how to read particular data from xml file
C#
4
Posts
4
Posters
0
Views
1
Watching
-
how to read particular data from xml file
-
how to read particular data from xml file
-
how to read particular data from xml file
-
how to read particular data from xml file
If the XML file is small, I would use Xml Serialization that will convert the textual xml file into an object which would be easy to read since it is an object. If hte XML file is a complex large file, then you can use the XmlReader class that that you can traverse the structure and process it. Either way, take a look MSDN website and you will find excellent examples that Microsoft provided you.
Microsoft Student Partner