索引器

using System;

using System.Collections.Generic;

using System.Linq;

using System.Text;



namespace ConsoleApplication1

{

    class C1

    {

        public string name1;

        public string name2;

        public string this[int index]

        {

            set

            {

                switch (index)

                {

                    case 0: name1 = value; break;

                    case 1: name2 = value; break;

                    

                }



            }

            get

            {

                switch (index)

                {

                    case 0: return name1;

                    case 1: return name2;

                    default: return ""; ;//这行代码一定要有不然会出现错误的

                }

            }

        }

    }

 

    class Program

    {

        static void Main(string[] args)//没有索引的简单类

        {

            C1 C = new C1();

            C[0]="lei";           

            Console.WriteLine("name1:{0}", C[0] );

            C[1] = "cao";

            Console.WriteLine("name1:{0}", C[1]);

            Console.ReadLine();

         }

    }

}
索引器
//总结:属性和索引在很多方面都是一样的索引和属性都主要被用来访问其他数据成员; //属性通常表示单个数据成员,索引通常表示多个数据成员。可以认为索引器是为类的 // 的多个数据成员提供get和set属性!

 

你可能感兴趣的:(索引)