给定以下JSON对象,
form = {
"name": "",
"address": {
"street": "",
"city": "",
"province": "",
"postalCode": "",
"country": ""
},
"phoneDay": "",
"phoneCell": "",
"businessName": "",
"website": "",
"email": ""
}
什么是自动生成以下C#类的工具?
public class ContactInfo
{
public string Name { get; set; }
public Address Address { get; set; }
public string PhoneDay { get; set; }
public string PhoneCell { get; set; }
public string BusinessName { get; set; }
public string Website { get; set; }
public string Email { get; set; }
}
public class Address
{
public string Street { get; set; }
public string City { get; set; }
public string Province { get; set; }
public string PostalCode { get; set; }
public string Country { get; set; }
}
我们已经研究了以下问题:
从JSON模式生成C#类正在询问有关JSON模式的信息,这可能是将来使用的一种方法。
4
json2csharp.com ???
—
哈比卜2014年
尝试使用此工具可能会有所帮助。.tools4geeks.com/json
—
Dheeraj Palagiri
有人知道如何使用Swagger YAML做同样的事情吗?
—
ryanwebjackson
不幸的是json2charp.com现在正在出售一个域名。太烂了,而速记笔有点笨拙。有人知道更好的选择吗?
—
DARKGuy
@DARKGuy jsonutils jsonutils.com
—
拉斐尔