Example #1
0
        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);
        }
Example #2
0
 public override string ToString()
 {
     return($"Current sc: {SplitChar.ToString()} -> L: {LowNode?.SplitChar ?? '#'} , E: {EqNode?.SplitChar ?? '#'} H: {HiNode?.SplitChar ?? '#'}");
 }