5
ใช้แอ็ตทริบิวต์ XmlInclude หรือ SoapInclude เพื่อระบุชนิดที่ไม่รู้จักแบบคงที่
ผมเคยมีปัญหาแปลกมากเมื่อทำงานกับ XmlSerializer.NET เรียนตามตัวอย่างต่อไปนี้: 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 methods } public class BankPayment : Payment { //method implementations } AFAIK …
99
c#
.net
xml
xmlserializer