Add an attribute to the root node in CSharp
Description
The following code shows how to add an attribute to the root node.
Example
using System;//from w w w .j a v a 2 s . c o m
using System.Data;
using System.Linq;
using System.Xml;
using System.Xml.Linq;
public class MainClass{
public static void Main(string[] args){
XDocument NewDoc = new XDocument(
new XDeclaration("1.0", "utf-8", "yes"),
new XElement("Root", "MyDoc"));
// Add an attribute to the root node.
NewDoc.Element("Root").Add(new XAttribute("MyAttr", "Attribute Value"));
Console.WriteLine(NewDoc);
}
}