关于C#中List〈string〉和string[]数组之间的相互转换

╰+攻爆jí腚メ 2024-03-23 20:17 127阅读 0赞

567ad6c2c2151f33368c39fe22f255cc.jpeg

List和string[]数组之间的相互转换,需要的朋友可以参考下

1,从System.String[]转到List

System.String[] str={“str”,”string”,”abc”};

List listS=new List(str);

2, 从List转到System.String[]

List listS=new List();

listS.Add(“str”);

listS.Add(“hello”);

System.String[] str=listS.ToArray();

测试如下:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
System.String[] sA = { “str”,”string1”,”sting2”,”abc”};
List sL = new List();
for (System.Int32 i = 0; i < sA.Length;i++ )
{
Console.WriteLine(“sA[{0}]={1}“,i,sA[i]);
}
sL = new List(sA);
sL.Add(“Hello!”);
foreach(System.String s in sL)
{
Console.WriteLine(s);
}
System.String[] nextString = sL.ToArray();
Console.WriteLine(“The Length of nextString is {0}“,nextString.Length);
Console.Read();
}
}
}

结果显示:

9c0edde5e39b2f225cdd6ec152aff539.jpeg

您可能

来源:微点阅读 https://www.weidianyuedu.com

发表评论

表情:
评论列表 (有 0 条评论,127人围观)

还没有评论,来说两句吧...

相关阅读