XDocument how can I comment an Element

I just want to know how I can comment an entire element using XDocument.

XDocument doc = XDocument.Parse("<configuration>
      <connectionString>
          ...
      </connectionString>
<configuration>");

/*Something like that*/ doc.Root.Element("connectionStrings").NodeType = XComment; /*??*/
Jon Skeet
people
quotationmark

Something like this, perhaps:

var element = doc.Root.Element("connectionStrings");
element.ReplaceWith(new XComment(element.ToString()));

Sample input/output:

Before:

<root>
  <foo>Should not be in a comment</foo>
  <connectionStrings>
    <nestedElement>Text</nestedElement>
  </connectionStrings>
  <bar>Also not in a comment</bar>
</root>

After:

<root>
  <foo>Should not be in a comment</foo>
  <!--<connectionStrings>
  <nestedElement>Text</nestedElement>
</connectionStrings>-->
  <bar>Also not in a comment</bar>
</root>

Add line breaks if you want to...

Is that what you were looking for?

people

See more on this question at Stackoverflow