zoukankan      html  css  js  c++  java
  • C#索引器1 数字作为索引号

        5.索引器   数字作为索引号    

    public class IndexerClass   

    {        

            private string[] name = new string[2];

            public string this[int index]       

           {            

                 get            

                {               

                     if (index < 2)          

                    {               

                           return name[index];          

                     }               

                    return null;         

                }            

                set           

               {             

                    if (index < 2)         

                    {                

                           name[index] = value;           

                    }            

               }       

          }  

    }

    public class Test

    {       

          public static void Main(string[] args)   

          {           

                 IndexerClass ic = new IndexerClass();         

                 ic[0] = "sssssss";          

                ic[1] = "bbbbbbb";         

                 Console.WriteLine("ic[{0}] 为 {1}",0,ic[0]);      

                 Console.WriteLine("ic[{0}] 为 {1}",1,ic[1]);

                 Console.ReadKey();      

           }   

    }

  • 相关阅读:
    第04组 团队项目-需求分析报告
    团队项目-选题报告
    第二次结对编程作业
    第一次结对编程作业
    第四组 团队展示
    第一次博客作业
    第09组 Alpha事后诸葛亮
    第09组 Alpha冲刺(6/6)
    2019 SDN上机第4次作业
    第09组 Alpha冲刺(5/6)
  • 原文地址:https://www.cnblogs.com/gyc19920704/p/5253348.html
Copyright © 2011-2022 走看看