1
假設我們有兩個類蘋果,菠蘿.NET XMLSERIALIZE,忽略類屬性
public class Apple:Fruit{}
public class Pineapple:Fruit{}
而且我們有一個抽象類名爲水果
[XmlInclude(typeof(Apple))]
[XmlInclude(typeof(Pineapple))]
public abstract class Fruit{}
而且我們有一個類名爲Menu
public class Menu
{
[XmlElement("apple",typeof(Apple))]
[XmlElement("",typeof(Pineapple))]
public Fruit fruit {get;set;}
}
我想在類型爲Pineapple時忽略水果屬性。
我需要生產清潔XML outpot和水果的人真正代表「無果」 。感謝它的工作! – 2014-10-06 10:44:45