mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-03 00:00:58 +08:00
13 lines
231 B
C#
13 lines
231 B
C#
using System;
|
|
|
|
namespace CC.Yi.Common
|
|
{
|
|
public static class JsonHelper
|
|
{
|
|
public static string JsonToString(object q)
|
|
{
|
|
return Newtonsoft.Json.JsonConvert.SerializeObject(q);
|
|
}
|
|
}
|
|
}
|