How to find a value of a SortedDictionary with C#

Find a Value

The ContainsValue method checks if a value is already exists in the SortedDictionary. The following code snippet checks if a value is already exits. 

if (!AuthorList.ContainsValue(9))

{

    Console.WriteLine("Item found");

}


Learn more:

Working with SortedDictionary using C#

Next Recommended Readings