Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道在编写一些文档时调用什么类型的 getter。
我的意思是,这种类型的吸气剂
public String this[string index] { get { return resolveKey(index); } }
会是类似于 a 的property accessor东西吗?
property accessor
所以可能还有一些其他问题问同样的事情,但因为如此用于[]分组标签和谷歌忽略符号我无法真正搜索它xD
[]
这种类型的属性称为索引器,因为您正在执行基于“索引”值的数组样式查找。
正如评论中深思熟虑的那样,this必须使用关键字来定义索引器。
this
这是MSFT 文档。