private IncludeProperties RemoveIfExit(IList <string> names, string name) { var theOne = TryFindIt(names, name); if (string.IsNullOrWhiteSpace(theOne)) { return(this); } names.Remove(theOne); Properties = string.Join(SplitChar.ToString(), names); return(this); }
public override string ToString() { return($"Current sc: {SplitChar.ToString()} -> L: {LowNode?.SplitChar ?? '#'} , E: {EqNode?.SplitChar ?? '#'} H: {HiNode?.SplitChar ?? '#'}"); }