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
基础教程推荐
- 如果有人提交恶意软件Nuget包怎么办? 2022-01-01
- 当值可以是对象或空数组时反序列化 JSON 2022-01-01
- Azure Functions:CosmosDBTrigger 未在 Visual Studio 中触发 2022-01-01
- C# 从 List<List<int>> 中删除重 2022-01-01
- 我应该在后面的代码中直接使用 Linq To SQL 还是使 2022-01-01
- 如何使用 .Net 检查 Active Directory 服务器是否已启动并正在运行? 2022-01-01
- WPF 模态进度窗口 2022-01-01
- Moq It.Is<>不匹配 2022-01-01
- .NET SerialPort DataReceived 事件未触发 2022-01-01
- 禁止输入少量字符,例如'<'、'&a 2022-01-01
