欢迎来到代码驿站!

.NET代码

当前位置:首页 > 软件编程 > .NET代码

c#泛型序列化对象为字节数组的示例

时间:2021-01-10 11:06:22|栏目:.NET代码|点击:

序列化对象为字节数组

复制代码 代码如下:

using System.IO;
using System.Runtime.Serialization.Formatters.Binary;
        protected byte[] Serialize<T>(T t)
        {
            MemoryStream mStream = new MemoryStream();
            BinaryFormatter bFormatter = new BinaryFormatter();
            bFormatter.Serialize(mStream, t);
            return mStream.GetBuffer();
        }

反序列化字节数组为对象

复制代码 代码如下:

using System.IO;
using System.Runtime.Serialization.Formatters.Binary;
        protected T Deserialize<T>(byte[] b)
        {
            BinaryFormatter bFormatter = new BinaryFormatter();
            return (T)bFormatter.Deserialize(new MemoryStream(b));
        }

上一篇:C# List引用类型克隆的3种方法

栏    目:.NET代码

下一篇:ASP.NET通过byte正确安全的判断上传文件格式

本文标题:c#泛型序列化对象为字节数组的示例

本文地址:http://www.codeinn.net/misctech/43198.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有