5
Gunakan atribut XmlInclude atau SoapInclude untuk menentukan jenis yang tidak dikenal secara statis
Saya mendapat masalah yang sangat aneh saat bekerja dengan .NET XmlSerializer. Ambil kelas contoh berikut: 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 class Payment { //abstract …
98
c#
.net
xml
xmlserializer