码迷,mamicode.com
首页 > Windows程序 > 详细

C#基本语法复习-使用索引器

时间:2015-04-04 15:08:13      阅读:179      评论:0      收藏:0      [点我收藏+]

标签:

索引是使用this关键字来引入的,this关键词之前要指定返回值的类型,在后面的方括号中要指定索引器的索引使用值的类型;一个雷或节后中只能有一个索引;

public bool this [int index]
{
get{}set{}
}

接口中的索引:

interface Ia{
bool this [int index]{get;set;}
}

 

C#基本语法复习-使用索引器

标签:

原文地址:http://www.cnblogs.com/hanshuidecangsanggan/p/4392179.html

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