-
在C#入门经典教程中,学习如何定义和调用索引器
资源介绍
定义和调用索引器
class Photo
{
string _title;
public Photo(string title)
{
this._title = title;
}
public string Title
{
get
{
return _title;
}
}
}
以 Title 属性表示照片
将照片存放于数组 photos 中
class Album
{
// 该数组用于存放照片
Photo[] photos;
public Album(int capacity)
{
photos = new Photo[capacity];
}