Aan
Aan

Reputation: 12920

what corresponds string[] in C++\CLI

I would like to ask and know what corresponds the C# type string[] in C++\CLI?

Upvotes: 0

Views: 80

Answers (1)

D Stanley
D Stanley

Reputation: 152644

Assuming you mean a managed array it would be

array<String^>^ 

Upvotes: 5

Related Questions