Contribute!

Like Json Utils? Want to expand it? Fix bugs? Now Open Source and accepting pull-requests! The Sauce

Generate classes from JSON - Json to C#, Json to VB.net, and JSON Viewer


    public class Employee
    {
        public string firstName { get; set; }
        public string lastName { get; set; }
    }

    public class Example
    {
        public IList<Employee> employees { get; set; }
    }