Link to home
Start Free TrialLog in
Avatar of bmihura
bmihura

asked on

C# xml path writer

I want to create an XML document like this:

<node1>
  <node2>
    <node3>some text</node3>
  </node2>
</node1>

Code I've seen that does this must call CreateElement() on an XmlDocument for each node. Is there a function that you can pass the entire node path to, and the final text node will be created, like this?

XmlCreateTextNode("node1/node2/node3", "some text");

I could always write such a function from scratch, but I'll bet such a function exists which is better than what I would write.
ASKER CERTIFIED SOLUTION
Avatar of Dmitry G
Dmitry G
Flag of New Zealand image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of bmihura
bmihura

ASKER

I still have to manually create the branch XML elements, but that code got me most of the way there, much better than I would have written it.  Thanks.