Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试从 JValue 读取日期时间字符串,但它在读取时会发生变化。
{ "updated": "2012-12-12T00:00:00Z", } JSON["updated"].Value<String>() = 12/12/2012 00:00:00
当我检查 JSON 对象时,发现了上面的 JSON 字符串。有什么想法为什么要这样做?
它可能在内部将其解析为 DateTime 并执行 DateTime.ToString。
尝试
JSON["updated"].Value<DateTime>().ToString("your format")