Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
C#に相当するものは何ですか?
private array<__int32>^ func() { }
私は C++/CLI でプログラミングしたことはありませんが、これらはあなたが探している型だと思います。
int[]
List<int>
正しいタイプは次のとおりです。
private int[] func() { }
あるいは
private List<int> func() { }