标签: c# sortedlist
我有以下代码来制作具有重复键的列表。 该列表最多包含150个项目,键值为0..100。
public SortedList<double, Sector> sectors; // ... double theKey = 100.0 - sortValue; while (sectors.Keys.Contains(theKey)) theKey += 0.00001; sectors.Add(theKey, newSector);
这是合理的技巧还是有更好的课程可供使用?