Created
December 3, 2018 13:59
-
-
Save mattumotu/ad3f84de6f81c7d425b5eb29091b8052 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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