索引器可以看做名字为this
的一个属性,
通过get
和set
语句块设置索引器的行为。
public ValueType this[KeyType key]
{
get
{
return ...
}
set
{
//value关键字表示set的值
}
}
其中,
KeyType
表示索引的类型,ValueType
表示索引器返回的类型。
索引器可以看做名字为this
的一个属性,
通过get
和set
语句块设置索引器的行为。
public ValueType this[KeyType key]
{
get
{
return ...
}
set
{
//value关键字表示set的值
}
}
其中,
KeyType
表示索引的类型,ValueType
表示索引器返回的类型。