XmlSerializer 将空字符串属性反序列化为零
我想使用 XmlSerializer 并将具有空字符串值的属性反序列化为整数零。我见过的关于用空字符串反序列化属性的每个问题都涉及将可空整数设置为空 - 但我想将不可空整数设置为零,而不是空。
有没有简单的方法可以做到这一点,而无需实现 IXmlSerialized 并自行处理?
I would like to use XmlSerializer and deserialize attributes with empty string values into zeros for ints. Every question I've seen regarding deserializing attributes with empty strings involves setting nullable ints to null - but I want to set non-nullable ints to zero, not null.
Is there any easy way to do this without implementing IXmlSerializable and just handling it all myself?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一种方法可能是配置虚拟可序列化属性,并在实践中使用不同的属性:
One approach could be to configure a dummy serializable property, and use a different property in practice: