raju patil

raju patil

  • NA
  • 54
  • 8k

how to save a xml file into listbox in C#

Oct 9 2014 8:15 AM
<?xml version="1.0" encoding="utf-8"?>
<ArrayOfMyObject xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<myObject>
<Column1> amar </Column1>
</myObject>
<myObject>
<Column1> pradeep </Column1>
</myObject>
<myObject>
<Column1> rahul </Column1>
</myObject>
</ArrayOfMyObject>
 
 
 
 
 
 
in above xml file i want to retrieve  only the column1 values in listbox. could someone please tell me how to do it , i m new to C#

Answers (4)