C#索引器语法格式
提问人:刘冬梅发布时间:2020-10-13
访问修饰 返回类型 this[int index]
{
// get和set访问器
}
示例:
public string this[int n]
{
get{return name[n]; }
set{name[n]=value;}
}
继续查找其他问题的答案?
相关视频回答
回复(0)
访问修饰 返回类型 this[int index]
{
// get和set访问器
}
示例:
public string this[int n]
{
get{return name[n]; }
set{name[n]=value;}
}
点击加载更多评论>>