I need to write out some XHtml, and in several places, I want that XHtml to contain entities references. However, you can't simply write the entitle reference like this: XElement p = new XElement ( "p" , " Hello" ); Console .WriteLine(p);
Read More...