C
Chris
Hi,
I'm trying to specify single-quotes to be used in xmlAttributes as follows :
XmlTextWriter writer = new XmlTextWriter (filename, null);
//Use indenting for readability.
writer.Formatting = Formatting.Indented;
writer.QuoteChar = (char)39;
--> but he still generates double quotes ???
thnx for your help
Chris
I'm trying to specify single-quotes to be used in xmlAttributes as follows :
XmlTextWriter writer = new XmlTextWriter (filename, null);
//Use indenting for readability.
writer.Formatting = Formatting.Indented;
writer.QuoteChar = (char)39;
--> but he still generates double quotes ???
thnx for your help
Chris