作者:手机用户2602904231 | 来源:互联网 | 2024-11-04 14:43
在托管C++中开发应用程序时,遇到了如何声明和操作字符串数组的问题。本文详细探讨了字符串数组在托管C++中的应用与实现方法,包括声明、初始化、遍历和常见操作技巧,为开发者提供了实用的参考和指导。
I'm trying to write an application in Managed C++, but I cannot work out how to declare an array of strings.
我正在尝试用Managed C ++编写一个应用程序,但我无法弄清楚如何声明一个字符串数组。
String^ linet[];
throws an error
抛出错误
'System::String ^' : a native array cannot contain this managed type
'System :: String ^':本机数组不能包含此托管类型
So I suppose there's a different way to do this for managed data types. What exactly is it?
所以我认为对托管数据类型有不同的方法。究竟是什么?
3 个解决方案