c#泛型序列化对象为字节数组的示例
更新时间:2014年04月22日 10:43:29 作者:
这篇文章主要介绍了c#泛型序列化对象为字节数组的示例,需要的朋友可以参考下
序列化对象为字节数组
复制代码 代码如下:
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# 4.0 新特性dynamic、可选参数、命名参数的详细介绍
本篇文章是对C# 4.0 新特性dynamic、可选参数、命名参数进行了详细的分析介绍,需要的朋友参考下2013-05-05C#组件系列 你值得拥有的一款Excel处理神器Spire.XLS
又一款Excel处理神器Spire.XLS,这篇文章主要为大家详细介绍了第三方组件Spire.XLS,具有一定的参考价值,感兴趣的小伙伴们可以参考一下2016-09-09
最新评论