คำถามติดแท็ก xmlserializer

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 
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.