1.索引器的索引值类型不限定为整数 2.索引器允许重载 3.索引器不是一个变量 4.索引器以函数签名方式this标识,而属性采用名称来标识,名称可以任意 5.索引器不能使用static来进行声明,属性可以.索引器永远属于实例成员,因此不能声明为static. using System; using System.Collections.Generic; namespace 编码练习 { public class Student { public string Name { get;set;} p