コード例 #1
0
ファイル: RTSDict.cs プロジェクト: thegreatclock/archive
 internal Enumerator(RTSDict <T> dictionary)
 {
     this.dictionary = dictionary;
     version         = dictionary.version;
     index           = 0;
     currentValue    = default(T);
 }
コード例 #2
0
ファイル: RTSDict.cs プロジェクト: thegreatclock/archive
 internal Enumerator(RTSDict <T> dictionary)
 {
     this.dictionary = dictionary;
     version         = dictionary.version;
     index           = 0;
     currentKey      = default(string);
 }
コード例 #3
0
ファイル: RTSDict.cs プロジェクト: thegreatclock/archive
 internal Enumerator(RTSDict <T> dictionary, int getEnumeratorRetType)
 {
     this.dictionary           = dictionary;
     version                   = dictionary.version;
     index                     = 0;
     this.getEnumeratorRetType = getEnumeratorRetType;
     current                   = default(KeyValuePair <string, T>);
 }
コード例 #4
0
ファイル: RTSDict.cs プロジェクト: thegreatclock/archive
 public ValueCollection(RTSDict <T> dictionary)
 {
     if (dictionary == null)
     {
         throw new ArgumentNullException("dictionary");
     }
     this.dictionary = dictionary;
 }