码迷,mamicode.com
首页 > Web开发 > 详细

FastJson用法

时间:2018-05-11 23:35:35      阅读:204      评论:0      收藏:0      [点我收藏+]

标签:bubuko   oid   com   test   ado   hive   var   alt   pac   

namespace test
{

    class Program
    {
        static void Main(string[] args)
        {
            var zoo1 = new zoo();

            zoo1.animals = new List<animal>();
            zoo1.animals.Add(new cat() { Name = "hello kitty", legs = 4 });
            zoo1.animals.Add(new dog() { Name = "dog1", tail = true });
            string json= fastJSON.JSON.Instance.ToJSON(zoo1); //序列化
            var z = fastJSON.JSON.Instance.ToObject<zoo>(json); //反序列化

            Console.WriteLine(z.animals[0].Name);
            Console.Read();
        }
    }

    public class animal { public string Name { get; set; } }
    public class cat : animal { public int legs { get; set; } }
    public class dog : animal { public bool tail { get; set; } }
    public class zoo { public List<animal> animals { get; set; } 
}

技术分享图片

 

https://www.cnblogs.com/hjblog/archive/2012/11/19/2776869.html

 

FastJson用法

标签:bubuko   oid   com   test   ado   hive   var   alt   pac   

原文地址:https://www.cnblogs.com/zhaogaojian/p/9026390.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!