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