Hi,
Is it possible in C# is append an XElement to an already existing xml file, without saving the whole xml, but just the new element?
So i don't want something like this, since it will write the whole xml to disk.
XDocument document = new XDocument();
document.Load("filename");
document.Root.add(new XElement("name", "content"));
document.save("filename");
thanks in advance.