public BoolList(bool emptyListValue, BoolListOperatorType operatorType, ReadByNonExistentKeyMode readByNonExistentKeyMode) { this.emptyListValue = emptyListValue; this.resultValue = emptyListValue; this.operatorType = operatorType; list = new LightDictionary <string, bool>(readByNonExistentKeyMode); }
public LightDictionary(ReadByNonExistentKeyMode readByNonExistentKeyMode) { this.readByNonExistentKeyMode = readByNonExistentKeyMode; }