다음 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 스키마에 대해 질문하고 있습니다.