How to make Android understand C# objects -


i'm trying make asp.net webservice android application. here class:

public class student {   int studentid {get; set;}   string name {get; set;}   string phonenumber {get; set;}   list<grade> grades {get; set;} } 

the grade class is:

public class grade  {   int gradeid;   string grade; } 

when send student object using json? how can make android understand , use student object? can give me that?


Comments

Popular posts from this blog

How has firefox/gecko HTML+CSS rendering changed in version 38? -

javascript - Complex json ng-repeat -

jquery - Cloning of rows and columns from the old table into the new with colSpan and rowSpan -