You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
public class Demo
{
public static void Main()
{
var jsonFormatter = new JsonFormatter();
jsonFormatter.SetDateTimeFormat("yyyy-MM-dd HH:mm:ss");
var json = jsonFormatter.Serialize(DateTime.Now);
Console.WriteLine(json); // "2019-02-13 11:03:46"
}
}
如题
类似在Newtonsoft.Json中的配置:
以前想装换成jil,因为jil不支持这种灵活的时间配置,还是继续用Newtonsoft.Json。
The text was updated successfully, but these errors were encountered: