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

SaveTextValue() private méthode

private SaveTextValue ( object value ) : void
value object
Résultat void
        private void SaveTextValue(object value)
        {
            string s = value.ToString(); //For strings, which will mostly be the case, ToString() will return this. For other typedValues, need to go through value converter (eg: TimeSpan, DateTime etc)
            _textValue.Append(s);
        }