I have an XML file in which I save temporary data (index and column name) as follows:
-<NewDataSet> -<USERROWCOL> <COL>2</COL> <Name>Name</Name> </USERROWCOL> -<USERROWCOL> <COL>8</COL> <Name>PDC</Name> </USERROWCOL> <NewDataSet>
I want to read all the COL in an array using C #, as if it would be an array ( {2, 8} ). Can someone help me with this?
Ashok damani
source share