รับวัตถุ 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; }
}
เราได้ดูคำถามเหล่านี้แล้ว:
สร้างคลาส C # จาก JSON Schemaกำลังถามเกี่ยวกับ JSON Schemas ซึ่งอาจเป็นแนวทางในการใช้งานตามท้องถนน