1
vote
Best way to get a comma delineated string into xml format?
Instead of doing string concatenation, you could probably create an XmlDocument and stuff it with the appropriate XmlElement and XmlAttribute objects from your string... Then, write out the XmlDoc …
