c# Newtonsoft.Json封装

Posted yuanzijian-ruiec

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c# Newtonsoft.Json封装相关的知识,希望对你有一定的参考价值。

    public static T Deserialize<T>(string content) where T : class, new()
        {
            return JsonConvert.DeserializeObject<T>(content);
        }

        public static string Serialize<T>(T obj) where T : class, new()
        {
            return JsonConvert.SerializeObject(obj);
        }

        public static void Serialize<T, S>(T obj, S stream) where S : Stream where T : class, new()
        {
            using (stream)
            {
                byte[] content = System.Text.Encoding.UTF8.GetBytes(JsonConvert.SerializeObject(obj));
                stream.Write(content, 0, content.Length);
            }
        }

 

以上是关于c# Newtonsoft.Json封装的主要内容,如果未能解决你的问题,请参考以下文章

解决未能加载文件或程序集“Newtonsoft.Json ...."或它的某一个依赖项。找到的程序集清单定义与程序集引用不匹配。 (异常来自 HRESULT:0x80131040)(代码片段

Newtonsoft.Json的使用整理

Newtonsoft.Json的使用整理

C# 用Newtonsoft.Json 修改 添加 JSON

记一次 Newtonsoft.Json 巧妙的用法(C#)

C#利用newtonsoft.json读取.so配置文件内容