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.
我有一个从 Java 转换为 C# 的代码,其中我有一个继承哈希表类的类。我可以直接访问 Add()、CopyTo() 等方法。但是我无法从子类内部按键获取值。
如何从类内部获取索引属性的值?
简直是
this[key]
...........
您需要使用索引器,例如dictionary[key]. 如果您在课堂上,请使用this[key].
dictionary[key]