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}]}

  • 相关阅读:
    ES6 Symbol类型 附带:Proxy和Set
    why updating the Real DOM is slow, what is Virtaul DOM, and how updating Virtual DOM increase the performance?
    React高级指南
    池(Pool)
    计算机网络Intro
    React基础
    CommonJS 与 ES6 的依赖操作方法(require、import)
    webpack初识(biaoyansu)
    关于时间安排贪心算法正确性的证明
    DP总结
  • 原文地址:https://www.cnblogs.com/cwgyn/p/JSON.html
Copyright © 2011-2022 走看看