tags:

views:

102

answers:

2

I am creating a WinForm application in C# using VS2005, whihc receives an XML data, that needs to be displayd in the winform fields. What is the best way to store the XML data withing winform (either by caching or by creating some tabled dataset)?

Also how to pass this stored data across various winforms withing the application? Please help!!

A: 

Take a look at the System.Xml.Linq.XElement class

Eugene Osovetsky