c# 二进制序列化
标签:div col 序列化 bsp serialize mat form 进制 att
public static T Deserialize(S stream) where S : Stream where T : class, new()
{
using (stream)
{
BinaryFormatter formatter = new BinaryFormatter();
return (T)formatter.Deserialize(stream);
}
}
public static void Serialize(T obj, S stream) where S : Stream where T : class, new()
{
using (stream)
{
BinaryFormatter formatter = new BinaryFormatter();
formatter.Serialize(stream, obj);
}
}
c# 二进制序列化
标签:div col 序列化 bsp serialize mat form 进制 att
原文地址:https://www.cnblogs.com/yuanzijian-ruiec/p/9720890.html
文章来自:
搜素材网的
编程语言模块,转载请注明文章出处。
文章标题:
c# 二进制序列化
文章链接:http://soscw.com/index.php/essay/102552.html
评论