此问题已在此处有答案:
How to convert JSON to C# classes?(5个答案)
6天前关闭.
{
"firstName": "John",
"lastName": "Smith",
"gender": "man",
"age": 32,
"address": {
"streetAddress": "21 2nd Street",
"city": "New York",
"state": "NY",
"postalCode": "10021"
},
"phoneNumbers": [
{
"type": "home",
"number": "212 555-1234"
},
{
"type": "fax",
"number": "646 555-4567"
}
]
}
我想直接创建对象或类,而不是手动逐个编写C#属性,如:
public string firstName{ get; set; }
public string lastName{ get; set; }
1条答案
按热度按时间af7jpaap1#
有一些方便的工具,在那里照顾你所问的。你只需要做一些搜索在线。我已经在过去使用这个网站,它是相当不错的:
json2csharp.com
你将JSON片段粘贴到一个面板中并转换它,它会给出以下输出:
你可能需要做一些调整,但我认为它基本上做到了你想要的。