Dato il seguente oggetto JSON,
form = {
"name": "",
"address": {
"street": "",
"city": "",
"province": "",
"postalCode": "",
"country": ""
},
"phoneDay": "",
"phoneCell": "",
"businessName": "",
"website": "",
"email": ""
}
che cos'è uno strumento per generare automaticamente la seguente classe 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; }
}
Abbiamo già esaminato queste domande:
Genera classi C # dallo schema JSON Chiede degli schemi JSON che potrebbero essere un approccio da utilizzare in futuro.
Vantaggi e svantaggi delle classi C # generate per gli oggetti Json