System.Xml.Schema.BaseValidator.SaveTextValue C# (CSharp) Method

SaveTextValue() private method

private SaveTextValue ( string value ) : void
value string
return void
        private void SaveTextValue(string value) {
            if (textString.Length == 0) {
                textString = value;
            }
            else {
                if (!hasSibling) {
                    textValue.Append(textString);
                    hasSibling = true;
                }
                textValue.Append(value);
            }
        }