User1778243854 posted
Hi All, I got a requirement converting Excel sheet in to xml using C#... Can you please share your suggestion how this is possible
Excel Columns and it contains data like below
Name Age Address1 City1 State1 Address2 City2 State2 Address3 City3 State3
XML Should look like below
<root>
<request>
<Name/>
<Age/>
<Address>
<Address1></Address1>
<City1></City1>
<State1></State1>
<Address2></Address2>
<City2></City2>
<State2></State2>
<Address3></Address3>
<City3></City3>
<State3></State3>
</Address>
</request>
</root>
Could you please share your ideas how to construct an XML like above ?