System.Xml.Serialization.XmlSerializationReader.CollapseWhitespace C# (CSharp) Method

CollapseWhitespace() protected method

protected CollapseWhitespace ( string value ) : string
value string
return string
        protected string CollapseWhitespace(string value)
        {
            if (value == null)
                return null;
            return value.Trim();
        }