I am new to xml , so please don't mind if it is too trivial question
Assume I have a xml file like below
<Person>
<Name>John-Jaime-Winston Junior</Name>
</Person>
<Person>
<Name>Steve</Name>
</person
Now i will have a person object , Can i know how to read the xml and cover to a array of objects.
Finally i want something like a list which will have all person objects.
I am unable to get the start how to do this as i am new to xml
class person {
string _name
public string Name
{
get { return _name}
set { _name= value; }
}
}
Thanks in advance