views:

1099

answers:

3

How do I make the XDocument object save an attribute value of a element with single quotes?

A: 

I'm not sure that any of the formatting options for LINQ to XML allow you to specify that. Why do you need to? It's a pretty poor kind of XML handler which is going to care about it...

Jon Skeet
+1  A: 

If it is absolutely necessary to have single quotes you could write your XML document to a string and then use a string replace to change from single to double quotes.

JacobE
Unfortunately that's going to be really tricky if the document contains double quotes anywhere else...
Jon Skeet
A: 

As long as you use single- and double-quotes in matched pairs and with correct nesting, standards-compliant XML processors won't care which style you use. Your question suggests that you are intending to process your XML output with tools that are not standards-compliant (or perhaps even not XML-aware). This is a dicey proposition at best, though I recognize that work situations and customer demands may not always give you the options of working with the right tools. I have co-workers who use sed and grep to sift through and modify XML files, and they often can get away with that. But if you have any choice at all, I recommend that you handle XML files with XML-aware tools all along the pipeline up to the point where the data is no longer marked up in XML. Doing otherwise will result in systems that are much more fragile than if you used XML-aware tools for all XML processing.

If you can't do that, then JacobE's suggestion is probably your best bet.

ChuckB