标签: c# data-structures
如何在C#中使用LinkedHashMap功能......
我在JAVA中使用LinkedHashMap ..比如
private Map<ShapeId, List<Shape>> children = new LinkedHashMap();
但是在c#中我不能使用LinkedHashMap()..
如何在C#中使用LinkedHashMap()
答案 0 :(得分:0)
最接近的是Dictionary<ShapeId, List<shape>>。请参阅MSDN上的article。
Dictionary<ShapeId, List<shape>>