What is the purpose of XmlConvert.ToString(), why not just use convert.ToString()?
XmlConvert is guaranteed to use the appropriate format for XSD types.
For instance, a DateTime will always be formatted with
yyyy-MM-ddTHH:mm:ss as the format string, regardless of the culture.
Back to
XML FAQ