• 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();
            }
        }
    }

  • 相关阅读:
    年度最佳负能量的50句话
    drbd初探及Heartbeat+DRBD+MySQL
    slatsatck file模块2种写法及系统初始化
    补鞋匠---Cobbler 服务器自动搭建
    sudo日志记录记录(rsyslog)
    [svc]lnmp一键安装脚本(含有np与mysql分离)
    webBench&ad网站并发测试工具
    Amoeba软件实现mysql读写分离
    awstat分析nginx日志
    网站的PV UV IP---网站常见软件性能
  • 原文地址:https://www.cnblogs.com/-SSY-/p/4648310.html
Copyright © 2020-2023  润新知