As the string doesn't look like regular XML, I suppose that you want to write it as a value in an XML file. If you use any of the built in classes to create the XML, the value will be correctly encoded not to disturb the XML code. Example:
using (XmlWriter writer = XmlWriter.Create(fileName)) {
writer.WriteStartDocument();
writer.WriteStartElement("data");
writer.WriteElementString("text", theString);
writer.WriteEndElement();
}
If you want to write only the string to a file, that is quite simple:
File.WriteAllText(fileName, theString)