欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

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;