Skip to content

Instantly share code, notes, and snippets.

@mattumotu
Created December 3, 2018 13:59
Show Gist options
  • Save mattumotu/ad3f84de6f81c7d425b5eb29091b8052 to your computer and use it in GitHub Desktop.
Save mattumotu/ad3f84de6f81c7d425b5eb29091b8052 to your computer and use it in GitHub Desktop.
public class Dictionary<TKey,TValue> {
public void Add (TKey key, TValue value);
public bool ContainsKey (TKey key);
public bool ContainsValue (TValue value);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment