How do I convert an XLS document to XML in C#?
Posted
by oraclee
on Stack Overflow
See other posts from Stack Overflow
or by oraclee
Published on 2010-03-08T14:30:01Z
Indexed on
2010/03/08
14:36 UTC
Read the original article
Hit count: 373
Hi all. I have an Excel spreadsheet that looks like:
I'd like to convert this to some XML that looks like:
<UserName>
bla1
</UserName>
<Mail>
bla1[at]bla2.com
</Mail>
<Address>
World
</Address>
can anyone help me do this in C#?
© Stack Overflow or respective owner