How can I transform the following XML into a List<string> or String[]:
<Ids>
<id>1</id>
<id>2</id>
</Ids>
|
2
|
How can I transform the following XML into a
|
||||
|
|
|
It sounds like you're more after just parsing rather than full XML serialization/deserialization. If you can use LINQ to XML, this is pretty easy:
In fact the call to Likewise I'd normally not bother calling |
||||||||||||
|
|
|
Here is a way using XmlDocument :
|
||||||||
|
|
|
This sample will work with the .NET framework 3.5:
|
||
|
|
You can use Properties class.
You can than access Strings from set for each key. Key is element name of xml. |
||||
|
|
|
Here's a way to get typed array from xml by using DataSets. (in this example array of doubles)
Of course parsing doubles and converting them back to strings all the time might be considered as blasphemy by some programmers... Even for me it was hard not to think about such waste of resources... but I guess sometimes it's better to just turn another away.. don't stress it :) |
|||
|
|