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


- Windows 喜欢在 LINUX 中使用 MONO 进行服务开发? 2022-01-01
- CanBeNull和ReSharper-将其用于异步任务? 2022-01-01
- C# 通过连接字符串检索正确的 DbConnection 对象 2022-01-01
- Azure Active Directory 与 MVC,客户端和资源标识同一 2022-01-01
- 是否可以在 .Net 3.5 中进行通用控件? 2022-01-01
- 使用 rss + c# 2022-01-01
- 带问号的 nvarchar 列结果 2022-01-01
- 为什么 C# 中的堆栈大小正好是 1 MB? 2022-01-01
- 在 C# 中异步处理项目队列 2022-01-01
- 在 LINQ to SQL 中使用 contains() 2022-01-01