Serialize and Deserialize with JSON : example
class Program { static void Main( string [] args) { var human1 = new Human () { Name = "Joe" , Age = 30, Children = new List < Human > { new Human () {Name= "Jim" , Age=3}, ...