how to use XMLTextWriter to write XML node at a specified position

Landry

New Member
I have an xml file likes below.\[code\]<?xml version="1.0" encoding="utf-8" ?><Book> <Title>Title</Title> <Content>Content</Content></Book>\[/code\]I want to write a new node after 'Content', I know how to use XMLDocument to do that, is there a way to use XMLTextWriter to do that?
 
Back
Top