我有一些類,狐狸例如添加XML屬性屬性
public class Test
{
[XmlElement(IsNullable = true)]
public string SomeProperty{get;set;}
}
當我序列化這個類的對象,我得到
<test>
<SomeProperty>value<someproperty>
<test>
但我需要添加屬性SomeProperty 不改變結構類並得到這個
<test>
<SomeProperty Search="true">value<someproperty>
<test>
我怎樣才能 去做?
PS:我知道,我可以寫對象,包括「SomeProperty」和布爾財產「搜索」,但它會改變
類
如何/在哪裏存儲與Test實例一起搜索的值? –
這是一個問題。可能有一些屬性存在 – cosset
也許不是。最好稍微回過頭來問一下你真正需要做什麼。這似乎是一個失敗的解決方案的一半。 –