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() { }