Tagged Questions

4
votes
7answers
1k views

What .NET dictionary supports a “find nearest key” operation?

I'm converting some C++ code to C# and it calls std::map::lower_bound(k) to find an entry in the map whose key is equal to or greater than k. However, I don't see any way to do the same thing with ...