字符串的容器^
我有这个变量:
array<String^> ^strings;
我想使用 for every
循环对其进行迭代,并将一些元素添加到另一个容器中。我应该使用什么数据类型?矢量和列表似乎都不适用于托管类型。
I have this variable:
array<String^> ^strings;
I want to iterate over it with a for each
loop and add some of the elements to another container. What data type should I use? Both vector and list don't seem to work with managed types.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您见过 .NET
List
吗? http://msdn.microsoft.com/en-us/library/6sh2ey19.aspxHave you seen the .NET
List<T>
? http://msdn.microsoft.com/en-us/library/6sh2ey19.aspx