コード例 #1
0
 public BoolList(bool emptyListValue, BoolListOperatorType operatorType, ReadByNonExistentKeyMode readByNonExistentKeyMode)
 {
     this.emptyListValue = emptyListValue;
     this.resultValue    = emptyListValue;
     this.operatorType   = operatorType;
     list = new LightDictionary <string, bool>(readByNonExistentKeyMode);
 }
コード例 #2
0
ファイル: LightDictionary.cs プロジェクト: ewin66/Katrin-CRM
 public LightDictionary(ReadByNonExistentKeyMode readByNonExistentKeyMode)
 {
     this.readByNonExistentKeyMode = readByNonExistentKeyMode;
 }