C# ImmutableDictionary.ContainsKey is a method that allows you to check if a specific key exists within an ImmutableDictionary object in the C# programming language. The method returns a boolean value indicating whether the specified key is present in the ImmutableDictionary or not. ImmutableDictionary is an immutable collection class in C# that provides an efficient and thread-safe way of storing key-value pairs. The ContainsKey method is helpful when you need to determine if a particular key is already present in the ImmutableDictionary before performing any further operations on it.
C# (CSharp) ImmutableDictionary.ContainsKey - 36 examples found. These are the top rated real world C# (CSharp) examples of ImmutableDictionary.ContainsKey from package code extracted from open source projects. You can rate examples to help us improve the quality of examples.