10088人加入学习
(18人评价)
C#编程-第二季-面向对象-宇宙最简单2021最新版

制作完成于2021-10月20日 使用VS2019

价格 免费

访问元素

public T this[int index]

{

get{

return data[int index]

{

set

{

data[index]=value;

}

list[10]

List

 

[展开全文]

public T this[int index]{
get{
if(index<0 || index > count -1){
throw new Argumentout0fRangeException("参数超出范围了");
}
return data[index];
}
 

[展开全文]

授课教师

SiKi学院老师

课程特色

下载资料(1)
视频(60)