Web 服务序列化
我想创建一个继承自 A 类的 A_bis 类 类 A 的某些字段可为 null ( [XmlElement(IsNullable = true)]
) 。其他人不... 我感兴趣的是其他人在 A_bis 类中可以为空。
I'd like to create a class A_bis witch inherits from class A
Some fields of class A are nullable ( [XmlElement(IsNullable = true)]
) . Others not ...
I'm interested in the others to become nullable in the class A_bis.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您无法通过继承来实现这一点。您将必须修改基类。
You cannot achieve this by inheritance. You will have to modify the base class.