A simple utility which creates a json-like string representation of the non-default public properties of an object
- .NET 10.0 library
- simple and intuitive API
- tested
- dependencies: none
Companycompany=new(){Name="Aco",Id=9,Active=true,Location=newLocation("3 Ruey",Country.Macedonia,DateTime.Now),People=newList<Person>(){newPerson("Natalia",18),newPerson("Natasha",42)}};company.Stringify()=>"Company: {Name:'Aco', Id:9, Active:True, Location:{Address:'3 Ruey', Country:Macedonia, Updated:4/7/2019 10:10:20 PM}, People:[{Name:'Natalia', Age:18}, {Name:'Natasha', Age:42}]}"