索引是使用this关键字来引入的,this关键词之前要指定返回值的类型,在后面的方括号中要指定索引器的索引使用值的类型;一个雷或节后中只能有一个索引;
public bool this [int index] { get{}set{} }
接口中的索引:
interface Ia{ bool this [int index]{get;set;} }
时间: 2024-10-07 14:34:25
索引是使用this关键字来引入的,this关键词之前要指定返回值的类型,在后面的方括号中要指定索引器的索引使用值的类型;一个雷或节后中只能有一个索引;
public bool this [int index] { get{}set{} }
接口中的索引:
interface Ia{ bool this [int index]{get;set;} }