5
Użyj atrybutu XmlInclude lub SoapInclude, aby określić typy, które nie są znane statycznie
Mam bardzo dziwny problem podczas pracy z .NET XmlSerializer. Weź następujące przykładowe zajęcia: 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 } …
99
c#
.net
xml
xmlserializer