示例#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
 public LightDictionary(ReadByNonExistentKeyMode readByNonExistentKeyMode)
 {
     this.readByNonExistentKeyMode = readByNonExistentKeyMode;
 }