Reputation: 12920
I would like to ask and know what corresponds the C# type string[] in C++\CLI?
string[]
Upvotes: 0
Views: 80
Reputation: 152644
Assuming you mean a managed array it would be
array<String^>^
Upvotes: 5