2014-02-18 68 views
0

對於XMLSerialization,您可以使用XML標記來指示如何在序列化中添加屬性/字段。有沒有辦法將XML標籤與屬性塊關聯起來?

其醜其每個屬性的XML標記。我的理解具有顯性的價值,但其對眼睛

我的問題是有沒有做這樣的事情,其中​​一個標籤與塊相關聯的方法的疼痛?

public class Application : IApplication 
{ 
    [XmlAttribute] 
    public string Name { get; set; } 
    public string Source { get; set; } 

    [XmlElement] 
    public string Description { get; set; } 
    public string Icon { get; set; } 
    public string StoreLink { get; set; } 

    [XmlIgnore] 
    public string Branch { get; set; } 
    public string Version { get; set; } 
    public string Build { get; set; } 
    public bool IsDebug { get; set; } 
    public bool IsX86 { get; set; } 

    public override string ToString() 
    { 
     return Name; 
    } 
} 

回答

0

Apperently你可以做...

[XmlAttribute] public string Version; 
[XmlAttribute] public string Number; 

這是對眼睛更容易一些。

相關問題