Esempio n. 1
0
 public void Add(string key, ITalesIterator value)
 {
     _dict.Add(key, value);
 }
Esempio n. 2
0
 public bool TryGetValue(string key, out ITalesIterator value)
 {
     return(_dict.TryGetValue(key, out value));
 }
Esempio n. 3
0
 public bool TryGetValue(string key, out ITalesIterator value)
 {
     return _dict.TryGetValue(key, out value);
 }
Esempio n. 4
0
 public void Add(string key, ITalesIterator value)
 {
     _dict.Add(key, value);
 }