Using JSON to Serialize/Deserialize TimeSpan(使用 JSON 序列化/反序列化 TimeSpan)
问题描述
我正在尝试使用 Newtonsoft.Json 反序列化/序列化时间跨度.JsonConvert,但是当发送 JSON 时,它被设置为 00:00:00.
I'm trying to deserialize/serialize a timespan with Newtonsoft.Json.JsonConvert, but when the JSON is sent it's set to 00:00:00.
这有可能吗?
推荐答案
我想通了,显然是MS设计缺陷...
I figured it out, Apparently it's a MS design flaw...
因为 TimeSpan 不能是无参数对象.XML 无法重新创建它.
Since TimeSpan cannot be a parameterless object. XML cannot recreate it.
看看这个网站.http://forums.silverlight.net/forums/p/51793/135450.aspx
所以.因此无法转换 TimeSpan.一个简单的方法是将时间跨度更改为字符串,然后将字符串发送过来.并使用 TimeSpan.TryParse(String);
So. Therefore TimeSpan cannot be converted. An easy way to do this is to change the timespan into a string, and then send the string over. and use TimeSpan.TryParse(String);
这篇关于使用 JSON 序列化/反序列化 TimeSpan的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:使用 JSON 序列化/反序列化 TimeSpan
基础教程推荐
- 有没有办法忽略 2GB 文件上传的 maxRequestLength 限制? 2022-01-01
- MS Visual Studio .NET 的替代品 2022-01-01
- SSE 浮点算术是否可重现? 2022-01-01
- 将 XML 转换为通用列表 2022-01-01
- 为什么Flurl.Http DownloadFileAsync/Http客户端GetAsync需要 2022-09-30
- rabbitmq 的 REST API 2022-01-01
- 如何在 IDE 中获取 Xamarin Studio C# 输出? 2022-01-01
- 将 Office 安装到 Windows 容器 (servercore:ltsc2019) 失败,错误代码为 17002 2022-01-01
- c# Math.Sqrt 实现 2022-01-01
- 如何激活MC67中的红灯 2022-01-01