Ejemplo n.º 1
0
 internal Enumerator(RTSDict <T> dictionary)
 {
     this.dictionary = dictionary;
     version         = dictionary.version;
     index           = 0;
     currentValue    = default(T);
 }
Ejemplo n.º 2
0
 internal Enumerator(RTSDict <T> dictionary)
 {
     this.dictionary = dictionary;
     version         = dictionary.version;
     index           = 0;
     currentKey      = default(string);
 }
Ejemplo n.º 3
0
 internal Enumerator(RTSDict <T> dictionary, int getEnumeratorRetType)
 {
     this.dictionary           = dictionary;
     version                   = dictionary.version;
     index                     = 0;
     this.getEnumeratorRetType = getEnumeratorRetType;
     current                   = default(KeyValuePair <string, T>);
 }
Ejemplo n.º 4
0
 public ValueCollection(RTSDict <T> dictionary)
 {
     if (dictionary == null)
     {
         throw new ArgumentNullException("dictionary");
     }
     this.dictionary = dictionary;
 }