最佳答案
我试图用我选择的一个键来保存一个集合中的项目列表。在 Java 中,我会简单地使用 Map,如下所示:
class Test {
Map<Integer,String> entities;
public String getEntity(Integer code) {
return this.entities.get(code);
}
}
在 C # 中有类似的方法吗?
System.Collections.Generic.Hashset
不使用散列,我不能定义自定义类型键
System.Collections.Hashtable
不是泛型类
System.Collections.Generic.Dictionary
没有 get(Key)
方法