c# litjson如何进行日期时间格式化

avatar
作者
猴君
阅读量:0

在使用 litjson 进行日期时间格式化时,可以使用 LitJson.JsonMapper.ToJson 方法将 DateTime 对象转换为 JSON 字符串时指定日期时间格式。

例如,可以使用以下代码将 DateTime 对象格式化为指定格式的字符串:

using LitJson; using System;  class Program {     static void Main()     {         DateTime dateTime = DateTime.Now;          JsonWriter writer = new JsonWriter();         writer.DateTimeFormat = "yyyy/MM/dd HH:mm:ss";                  string jsonString = JsonMapper.ToJson(dateTime, writer);                  Console.WriteLine(jsonString);     } } 

在上面的示例中,我们将当前时间的 DateTime 对象格式化为 “yyyy/MM/dd HH:mm:ss” 格式的字符串。您可以根据需要自定义日期时间格式。

广告一刻

为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!