c# 二进制序列化

2021-07-09 01:06

阅读:640

标签: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


评论


亲,登录后才可以留言!