I've noticed that it is possible to add the same node multiple times into the same TXMLDocument - is this a good idea?
n := XMLDocument1.CreateElement('Test', '');
XMLDocument1.DocumentElement.ChildNodes.Add(n);
XMLDocument1.DocumentElement.ChildNodes.Add(n);
n.Text := 'fool me once...';
The node test will appear multiple times in the tree
Edit: To make my question clear - Will it cause any problems if I add an IXMLNode multiple times in a TXMLDocument?