码迷,mamicode.com
首页 > 其他好文 > 详细

C#索引笔记

时间:2014-06-09 15:35:33      阅读:177      评论:0      收藏:0      [点我收藏+]

标签:c   class   a   int   get   string   

class Program
{
static void Main(string[] args)
{
  Person p1 = new Person();
  Console.WriteLine(p1["tom", 3, 9]);
  Console.ReadKey();

}
}

 

 

class Person
{
  public string this[string name, int x, int y]

  {
      get

      {
      return name + x + y;
      }
  }

}

C#索引笔记,布布扣,bubuko.com

C#索引笔记

标签:c   class   a   int   get   string   

原文地址:http://www.cnblogs.com/dychimaojin/p/3776500.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!