zoukankan      html  css  js  c++  java
  • LitJson的用法

    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Threading.Tasks;
    using LitJson;
    
    namespace testLitJson
    {
        class Program
        {
            static void Main(string[] args)
            {
                string str= Console.ReadLine();
                if (str == "k")
                {
                    testLitjsonm();
                }
                Console.ReadKey();
            }
    
            public static void testLitjsonm()
            {
                person xiaohong = new person(002, "小红");
                Console.WriteLine("xiaohong.id="+ xiaohong.Id);
                Console.WriteLine("xiaohong.name="+xiaohong.Name);
    
                string temp_s= JsonMapper.ToJson(xiaohong);
                Console.WriteLine("temp_s="+temp_s);
    
                JsonData tempjd= JsonMapper.ToObject(temp_s);
                int idvalue = (int)tempjd["Id"];
                Console.WriteLine(idvalue);
                string namevalue = (string)tempjd["Name"];
                Console.WriteLine(namevalue);
    
                person xiaohongclone = new person(idvalue, namevalue);
                Console.WriteLine("xiaohongclone.id=" + xiaohongclone.Id);
                Console.WriteLine("xiaohongclone.name=" + xiaohongclone.Name);
            }
        }
    }
    
    public class person
    {
        private int id;
        private string name;
    
        //Ctrl+R+E快速构造访问器
        public int Id { get => id; set => id = value; }
        public string Name { get => name; set => name = value; }
    
        public person(int id,string name)
        {
            this.id = id;
            this.name = name;
        }
    }
    

      运行结果:

    我爱学习,学习使我快乐。
  • 相关阅读:
    css命名书写规范小结。
    不断学习,充实自己。
    【openGL】画正弦函数图像
    【openGL】画五角星
    【openGL】画圆
    【openGL】画直线
    【网络资料】Astar算法详解
    【Agorithm】一次一密加密解密算法
    【HTML5】 web上的音频
    【sicily】卡片游戏
  • 原文地址:https://www.cnblogs.com/kerven/p/7440699.html
Copyright © 2011-2022 走看看