0
我有一個類,我在其中序列化爲XML。如何在C#中註釋一個屬性爲可選項#
當我讀取(Deserialize
)XML時,ReadOnly
屬性可能存在也可能不存在。
我該如何標記這是可選的和/或必需的?
目前
[XmlAttribute("ReadOnly")]
public bool ReadOnly
{
get { return this.readOnly; }
set { this.readOnly = value; }
}
像這樣的事情是林後什麼
[XmlAttribute("ReadOnly", AttributeType.Optional)]
public bool ReadOnly
{
get { return this.readOnly; }
set { this.readOnly = value; }
}
好的非常感謝。我是在假設一切都需要。 – IEnumerable