निम्नलिखित 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 स्कीमा के बारे में पूछ रहा है जो सड़क का उपयोग करने के लिए एक दृष्टिकोण हो सकता है।