Reputation: 12294
How can I do something like XElement xml =empty;
Upvotes: 0
Views: 360
Reputation: 8488
Use the RemoveAll method to remove all child elements:
xml.RemoveAll();
This will leave you with your existing XElement as is but if you wanted to clear that out too just create a new XElement entirely.
xml = new XElement("name");
Upvotes: 1