Java Map 相当于 C 语言#
2022-08-31 07:24:37
我正在尝试使用我选择的键在集合中保存项目列表。在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)