Please help me with the C# Code to create an xml file in name-value pairs format..

hektor

Disciple
Hi,
I am creating a windows form to create an xml file according to certain user choices. The xml file should be created at a specified path and the format of the xml file is in "Name-Value" pairs. The problem is that i need the xml document in this particular format..

<Test name="xxx>
<Datablock name="xxx">
<Input>
<Parameter name="xxx" value="xxx"/>
<Parameter name="xxx" value="xxx"/>
</Input>
</Datablock>
</Test>
Please help..
 
Back
Top