Which is the best way to find if a key exists in C# SortedList?
The question is quite clear, I have a SortedList represents an associated array. Both key and values are string. I'm thinking of scanning linear but binary search is faster coz it's 'Sorted'.
I wonder if there's a standard way to find the pair by key, like noted in MSDN or some where popular?