I am creating several XmlElements used in a larger XML Document.
XmlElement thisElement = xmlSearchParameters.CreateElement("value");
thisElement.InnerXml = this.searchParameters[key];
This works well for most instances, but if the value of searchParameters[key] happens to include an & symbol, I get one of the two following errors:
Unexpected end of file has occurred. Line 1, position 1. - if value is ONLY &
An error occurred while parsing EntityName. Line 1, position 7. - if value contains & mixed with other text.
What is the prefered way of including & and any other special symbols in an XmlElement? I suspect there must be a better way than just replacing & with something else (some sort of XmlFormat method???).
Thanks!