关于C#中List〈string〉和string[]数组之间的相互转换
List
1,从System.String[]转到List
System.String[] str={“str”,”string”,”abc”};
List
2, 从List
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
for (System.Int32 i = 0; i < sA.Length;i++ )
{
Console.WriteLine(“sA[{0}]={1}“,i,sA[i]);
}
sL = new List
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();
}
}
}
结果显示:
您可能
来源:微点阅读 https://www.weidianyuedu.com
还没有评论,来说两句吧...