Hello Everyone,
I need to deserialize below xml object into the respective models below. how to do this. please suggest me
102
ABC
JOHN
IX
13
Taylor
IIX
11
103
BCD
CHRIS
IV
9
public class School
{
public List StudentList;
public int SchoolID { get; set; }
public string SchoolName { get; set; }
}
public class Student
{
public string StudentName { get; set; }
public string ClassName { get; set; }
public int ? Age { get; set; }
}
Thanks,
Krish
Nitin SontakkePosted Jul 8, 2021, 5:08 AM
Arnab MukherjeePosted Jul 8, 2021, 8:43 AM
Shweta LodhaPosted Jul 8, 2021, 5:13 AM