C#-索引器(Indexer) 发表于 2022-01-01 分类于 csharp 索引器(Indexer) 允许一个对象可以像数组一样被索引。当您为类定义一个索引器时,该类的行为就会像一个 虚拟数组(virtual array) 一样。您可以使用数组访问运算符([ ])来访问该类的实例。 语法: 12345678910111213element-type this[int index]{ // get 访问器 get { // 返回 index 指定的值 } // set 访问器 set { // 设置 index 指定的值 }}