zoukankan      html  css  js  c++  java
  • List<string>和string[]数组之间的相互转换

    1,从System.String[]转到List<System.String>

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

    List<System.String> listS=new List<System.String>(str);

    2, 从List<System.String>转到System.String[]

    List<System.String> listS=new List<System.String>();

    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<System.String> sL = new List<System.String>(); for (System.Int32 i = 0; i < sA.Length;i++ ) { Console.WriteLine("sA[{0}]={1}",i,sA[i]); } sL = new List<System.String>(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(); } } }

    结果显示:

      详细出处参考:http://www.jb51.net/article/32390.htm

  • 相关阅读:
    构建之法阅读笔记02
    学习进度
    构建之法阅读笔记01
    小学生的四则运算题
    构建之法----速读问题
    软件工程概论作业一
    分数 任意输入
    JAVA异常
    大道至简——第七、八章读后感
    super 要点
  • 原文地址:https://www.cnblogs.com/happywang/p/3078145.html
Copyright © 2011-2022 走看看