c# 使用 System.Text.Json.Serialization 将 NaN 值反序列化为 JSON;
我需要使用 System.Text.Json 将 Json 中的 NaN(因为它不是 JSON)转换为 Double
例如,我有以下 JSON:
{ "Amount": NaN }
I need to convert NaN in Json(as it is not JSON) to Double using System.Text.Json
For example, I am having following JSON:
{ "Amount": NaN }
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要序列化/反序列化,您可以使用替代方式(例如字符串)
Json.NET 将这些作为字符串存储在有效负载中,然后自动转换为浮点型。为了进行演示,您可以检查以下代码:
To serialized/deserialized, You can use an alternative way (such as strings)
Json.NET stores these as strings in the payload then automatically converts to float. To demonstrate you can check the following code: