c# dictionary in dictionary contains value 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);