首页 > 编程 > C# > 正文

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

2020-01-24 02:41:44
字体:
来源:转载
供稿:网友

序列化对象为字节数组

复制代码 代码如下:

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));
        }

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表