C#强类型定义,数据序列化为JSON格式
程序员文章站
2024-01-31 08:31:28
...
定义一个强类型数据:
private Random random = new Random();//随机数
var obj = new
{
float1= new JValue(random.Next(2000) / 10d),
bool1= new JValue(random.Next(100) > 10),
long1= new JValue(random.Next(1000))
};
序列化为JSON格式
string str = JsonConvert.SerializeObject(obj));
序列化JSON需要提前引用using Newtonsoft.Json;