Description:
Default bool parser.
Added In: v0.45
public class UMFConfigBool : UMFConfigParser<bool> { public bool? DefaultValue; public bool? VanillaValue; public bool RequiresRestart; public UMFConfigBool(bool? defaultValue = null, bool? vanillaValue = null, bool requiresRestart = false) { DefaultValue = defaultValue; VanillaValue = vanillaValue; RequiresRestart = requiresRestart; } public override bool Parse(string value) { if (!bool.TryParse(value, out bool result)) result = DefaultValue ?? false; return result; } public override string ToString() { return DefaultValue.ToString() ?? null; } public override string Default() { return DefaultValue.ToString() ?? null; } public override string Vanilla() { return VanillaValue.ToString() ?? null; } public override string Restart() { return RequiresRestart.ToString(); } }
//Coming soon
//Coming soon