示例#1
0
 public bool Remove(Pair <K1, K2> key)
 {
     return(backingMap.Remove(key));
 }
示例#2
0
 public void Put(Pair <K1, K2> key, V value)
 {
     backingMap.GetValues();
 }
示例#3
0
 public bool ContainsKey(Pair <K1, K2> key)
 {
     return(backingMap.ContainsKey(key));
 }
示例#4
0
 public V Get(Pair <K1, K2> key)
 {
     return(backingMap.Get(key));
 }