If I have an xmlreader instance how can I use it to read its current node and end up with a xmlElement instance?
|
|
|||
|
|
|
Not tested, but how about via an
Alternatively (from the cmoment), something like:
But actually I'm not a fan of that... it forces an additional xml-parse step (one of the more CPU-expensive operations) for no good reason. If the original is being glitchy, then perhaps consider a sub-reader:
|
||||||
|
|
|
Assuming that you have XmlDocument, where you need to attach the newly created XmlElement:
From the docs: Do not instantiate an XmlElement directly; instead, use methods such as CreateElement. |
|||
|
|
