我想创建一个用于序列化和反序列化的类。在反序列化时序列化属性名称应为“MyNameRequestType”和“MyNameResponseType”。
问题是我应该如何创建或覆盖XmlRootAttribute?
例如
[System.SerializableAttribute()]
[System.Xml.Serialization.XmlRootAttribute("MyNameRequestType", IsNullable = false)]
public class MyClass
{
public string MyProperty { get; set; }
}