gpt4 book ai didi

c# - 如何将类型 System.Collections.Specialized.StringCollection 转换为字符串 []

转载 作者:IT王子 更新时间:2023-10-29 04:32:12 27 4
gpt4 key购买 nike

我的类库中的一些函数接受 string[] 作为参数。

我想将我的 System.Collections.Specialized.StringCollection 转换为 string[]

有没有可能只用一个衬里,或者我必须用循环创建数组?

最佳答案

使用StringCollection.CopyTo(string[],index)将内容复制到字符串数组。 所有 .Net 框架都支持这一点。

System.Collections.Specialized.StringCollection sc = new System.Collections.Specialized.StringCollection();
sc.Add("Test");
sc.Add("Test2");

string[] strArray = new string[sc.Count];
sc.CopyTo(strArray,0);

关于c# - 如何将类型 System.Collections.Specialized.StringCollection 转换为字符串 [],我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13392411/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com