Online JSON to C# Converter is an easy-to-use tool that converts JSON into C# classes. Copy, paste, and convert.
It provides the following features:
Input JSON string code:
{
"id":1,
"name":"John",
"age":24
}
Output C# class result:
public class Root
{
///
///
///
public int id { get; set; }
///
///
///
public string name { get; set; }
///
///
///
public int age { get; set; }
}