コード例 #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 BoolList(bool emptyListValue, BoolListOperatorType operatorType) : this(emptyListValue, operatorType, ReadByNonExistentKeyMode.ReturnDefault)
 {
 }