zoukankan      html  css  js  c++  java
  • C#中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();

     测试:

     protected void Page_Load(object sender, EventArgs e)
            {
                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)
                {
                    Response.Write(s);
                    Response.Write("<br/>");
                    //Console.WriteLine(s);
                }
                System.String[] nextString = sL.ToArray();
                //Console.WriteLine("The Length of nextString is {0}", nextString.Length);
                //Console.Read();
                Response.Write("The Length of nextString is :"+nextString.Length);
            }

    结果:

    参考:http://www.jb51.net/article/32390.htm

  • 相关阅读:
    python D20 多继承、C3算法、super()
    python D19 约束、日志
    python D18 反射与md5 加密
    python D17 类与类之间的关系
    python D16 成员
    python D15 面向对象
    python D14 内置函数二
    python D13 内置函数
    python D12 生成器以及生成器表达式
    oracle函数
  • 原文地址:https://www.cnblogs.com/wangfuyou/p/5811371.html
Copyright © 2011-2022 走看看