这是对带有重复项的SortedList的合理使用吗?

时间:2019-03-13 21:25:25

标签: 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);

这是合理的技巧还是有更好的课程可供使用?

0 个答案:

没有答案