5
Utilizzare l'attributo XmlInclude o SoapInclude per specificare i tipi che non sono noti staticamente
Ho un problema molto strano quando lavoro con .NET XmlSerializer. Prendi le seguenti classi di esempio: 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 { …
97
c#
.net
xml
xmlserializer