System.Xml.Schema.BaseValidator.SaveTextValue C# (CSharp) 메소드

SaveTextValue() 개인적인 메소드

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