How can I do something like XElement xml =empty;
Asked
Active
Viewed 357 times
1 Answers
1
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");

Darren Lewis
- 8,338
- 3
- 35
- 55