C# List的数据字典作用

    有时候需要使用一个数据字典的表来罗列大批的数据,这时使用List是比较好的方法。

  1. class Program
  2. {
  3.     public static Liststring> STAR_LIST = new Liststring>() { "Kobe","James","Wade","Durant"};
  4.     static void Main(string[] args)
  5.     {
  6.         int index1 = STAR_LIST.IndexOf("Kobe");
  7.         int index2 = STAR_LIST.IndexOf("James");
  8.         int index3 = STAR_LIST.IndexOf("Wade");
  9.         Console.WriteLine("{0},{1},{2}", index1, index2, index3);
  10.         Console.ReadLine();
  11.     }
  12. }


    上面的球星表清晰的列出了有那些球星。在实际开发过程中,这个表被用于的机率很高。main()中的使用是就是典型的应用之一,用来取得相应的索引。

 

C# List的数据字典作用

上一篇:linux:vim的常用命令(转)


下一篇:HDFS源码分析数据块汇报之损坏数据块检测checkReplicaCorrupt()