예제 #1
0
 public TValue this[TKey key] {
     get { return(dict[NullableKey.Create(key)]); } set { dict[NullableKey.Create(key)] = value; }
 }
예제 #2
0
 public bool TryGetValue(TKey key, out TValue value)
 {
     return(dict.TryGetValue(NullableKey.Create(key), out value));
 }
예제 #3
0
 public bool ContainsKey(TKey key)
 {
     return(dict.ContainsKey(NullableKey.Create(key)));
 }
예제 #4
0
 public bool Remove(TKey key)
 {
     return(dict.Remove(NullableKey.Create(key)));
 }
예제 #5
0
 public void Add(TKey key, TValue value)
 {
     dict.Add(NullableKey.Create(key), value);
 }