コード例 #1
0
 public int IndexOf(QDictionary dic)
 {
     for (int Index = 0; Index < this.List.Count; Index++)
     {
         if (dic == (QDictionary)this.List[Index])
         {
             return(Index);
         }
     }
     return(-1);
 }
コード例 #2
0
ファイル: DictionaryCollection.cs プロジェクト: 0anion0/IBN
 public int IndexOf(QDictionary	dic)
 {
     for(int Index = 0;Index<this.List.Count;Index++)
     {
         if(dic==(QDictionary)this.List[Index])
         {
             return Index;
         }
     }
     return -1;
 }
コード例 #3
0
 public void Add(QDictionary dic)
 {
     //TODO: Add Check Unique dic.
     this.List.Add(dic);
 }
コード例 #4
0
ファイル: DictionaryCollection.cs プロジェクト: 0anion0/IBN
 public void Add(QDictionary dic)
 {
     //TODO: Add Check Unique dic.
     this.List.Add(dic);
 }