I'm using XDocument to describe a tree of folders' names.
Some folders have special characters, like " ' " and I get an XmlException saying such characters cannot be included in a name.
I've added the following declaration to the document's constructing:
public XDocument file= new XDocument(new XDeclaration("1.0", "utf-8", "yes"));
but I still get the exception. I'd appreciate any solution that will enable comfortable work.
Thanks.
