Jak uzyskać klucz słownika według wartości w języku C #?
Dictionary<string, string> types = new Dictionary<string, string>()
{
{"1", "one"},
{"2", "two"},
{"3", "three"}
};
Chcę coś takiego:
getByValueKey(string value);
getByValueKey("one")
musi być powrót "1"
.
Jak najlepiej to zrobić? Może HashTable, SortedLists?