check if dictionary contains value c# code example
Example: if in dictionary c#
if (dict.ContainsKey(key)) { ... }
//or
dict.TryGetValue(key, out value);
if (dict.ContainsKey(key)) { ... }
//or
dict.TryGetValue(key, out value);