将对象实例克隆为其基本类型
我有以下类:
public class AddCouponInfoRequest : namespace.Request
{
}
我手中有一个 AddCouponInfoRequest 实例,我想获取具有相同值的 namespace.Request 实例。
这不起作用:
namespace.Request req = (namespace.Request)request;
string xml = req.SerializeToXml();
序列化后 xml 的值是:
<AddCouponInfoRequest xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:xsi= \"http://www.w3.org/2001/XMLSchema-instance\">\r\n \r\n \r\n ...
我需要一个纯namespace.Request 对象。最好的方法是什么?
提前致谢,
I have the following class:
public class AddCouponInfoRequest : namespace.Request
{
}
I have an instance of AddCouponInfoRequest in my hand and I want to get an instance of namespace.Request with the same values.
This doesn't work fine:
namespace.Request req = (namespace.Request)request;
string xml = req.SerializeToXml();
The value of xml after serialization is:
<AddCouponInfoRequest xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\">\r\n \r\n \r\n ...
I need a pure namespace.Request object. What is the best way to do this?
Thanks in advance,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
SerializeToXml 是一个虚拟方法,因此它总是调用重写方法是合乎逻辑的。
例如,您可以为 AddCouponInfoRequest 创建一个新方法
SerializeToXml is a virtual method so it is logical it always calls the overriden method.
You can, for example, create a new method for AddCouponInfoRequest