C#索引器語(yǔ)法格式
提問(wèn)人:劉冬梅發(fā)布時(shí)間:2020-10-13
訪問(wèn)修飾 返回類(lèi)型 this[int index]
{
// get和set訪問(wèn)器
}
示例:
public string this[int n]
{
get{return name[n]; }
set{name[n]=value;}
}
繼續(xù)查找其他問(wèn)題的答案?
相關(guān)視頻回答
訪問(wèn)修飾 返回類(lèi)型 this[int index]
{
// get和set訪問(wèn)器
}
示例:
public string this[int n]
{
get{return name[n]; }
set{name[n]=value;}
}
點(diǎn)擊加載更多評(píng)論>>