I need to get the data from this XML file, and I think deserializing it would be the way to go, however, I have no idea how to do that with .NET.
<consoles>
<console name ="snes">
<year>1991</year>
<manufacturer>Nintendo</manufacturer>
</console>
<console name = "wii">
<year>2006</year>
<manufacturer>Nintendo</manufacturer>
</console>
<console name = "ps3">
<year>2006</year>
<manufacturer>Sony</manufacturer>
</console>
</consoles>
Basically, I want to be able to at will get the year or manufacturer data for each console.
1 Answer