zoukankan      html  css  js  c++  java
  • Json-->Newton.Json.dll的使用方法

    Newton.Json.dll  for .NET2.0

    实体1

    public class Student
        {
            public string ID { get; set; }
            public string Name { get; set; }
            public int Age { get; set; }
        }

    实体2

    public class Classroom
        {
            public string ID { get; set; }
            public string CName { get; set; }
            public List<Student> stds { get; set; }
        }

    初始化

     Student st1 = new Student
                {
                    ID = "11",
                    Name = "cw",
                    Age = 1
                };
                Student st2 = new Student
                {
                    ID = "12",
                    Name = "wjb",
                    Age = 2
                };
                List<Student> std = new List<Student>();
                std.Add(st1);
                std.Add(st2);
                Classroom cls1 = new Classroom
                {
                    ID = "23",
                    CName = "1班",
                    stds = std
                };

     string xx= JsonConvert.SerializeObject(cls1);

    返回结果:

    {"ID":"23","CName":"1班","stds":[{"ID":"11","Name":"cw","Age":1},{"ID":"12","Name":"wjb","Age":2}]}

  • 相关阅读:
    node体验
    JS练习--prototype的一道题目
    JS的OOP--继承之prototype
    JS的OOP--new一个function背后的实际操作
    JS中new运算符的运算顺序
    thymeleaf 拼接字符串与变量
    spring jpa exists
    LocalDateTime json格式化
    格式化java8 LocalDateTime
    springboot定时任务
  • 原文地址:https://www.cnblogs.com/cwgyn/p/JSON.html
Copyright © 2011-2022 走看看