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