5
Sử dụng thuộc tính XmlInclude hoặc SoapInclude để chỉ định các loại tĩnh không được biết đến
Tôi gặp sự cố rất lạ khi làm việc với .NET's XmlSerializer. Lấy các lớp ví dụ sau: 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 …
98
c#
.net
xml
xmlserializer