1. 进入菜单 "工具"->"扩展和更新", 搜索添加 "nuget"
2. 按下图提示:
下面的 json 字符串
{ cmd: "abc", userList: [ { id: 1, name: 'a' }, { id: 2, name: 'b' } ] }
最终可以粘贴为:
public class Rootobject
{
public string cmd { get; set; }
public Userlist[] userList { get; set; }
}
public class Userlist
{
public int id { get; set; }
public string name { get; set; }
}
节省了自己写匹配 json 类的时间, 还不会出错。