5
प्रकार निर्दिष्ट करने के लिए XmlInclude या SoapInclude विशेषता का उपयोग करें, जो कि सांख्यिकीय रूप से ज्ञात नहीं हैं
.NET के साथ काम करते समय मुझे एक बहुत ही अजीब समस्या आई है XmlSerializer। निम्नलिखित उदाहरण कक्षाएं लें: public class Order { public PaymentCollection Payments { get; set; } //everything else is serializable (including other collections of non-abstract types) } public class PaymentCollection : Collection<Payment> { } public abstract …
97
c#
.net
xml
xmlserializer