我有一些课,狐狸的例子
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”和 Bool 属性“Search”的对象,但它会改变类的结构