摘要:
1.索引器 索引器提供一种特殊的方法,用于编写可使用方括号运算符调用的get和set访问方法,而不用传统的方法调用语法public Photo this[int index]{ get{} set{}}注:仅有一个元素时没必要索引器进行检索,使用索引一般都是针对类的数组元素using System;namespace BaseConsole{ #region 照片 /// /// 照片 /// class Photo { string _title; public Photo(string title) ... 阅读全文