System.Xml.Schema.BaseValidator.SaveTextValue C# (CSharp) Méthode

SaveTextValue() private méthode

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