Contains method

bool Contains(
  1. TKey key
)
Determines whether this instance contains the specified key. The key.

Implementation

bool Contains(TKey key) {
  return this.Entries.containsKey(key);
}