程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> C# >> C#基礎知識 >> 類序列化

類序列化

編輯:C#基礎知識
 class Program
    {
        static void Main(string[] args)
        {
            A a = new A() { AppId = "4", haor = "浩然" };
            var bytes=a.ObjectToBytes(a);
            var classA = a.BytesToObject(bytes);
            Console.ReadKey();
        }

        [Serializable()]
        public abstract class PacketBase
        {
            public string AppId { get; set; }
            public string Token { get; set; }
            public string DeviceId { get; set; }
        }

        [Serializable()]
        public class A:PacketBase
        {
            public string haor { get; set; }
            /// <summary> 
            /// 將一個object對象序列化,返回一個byte[]         
            /// </summary> 
            /// <param name="obj">能序列化的對象</param>         
            /// <returns></returns> 
            public byte[] ObjectToBytes(object obj)
            {
                using (MemoryStream ms = new MemoryStream())
                {
                    IFormatter formatter = new BinaryFormatter(); formatter.Serialize(ms, obj); return ms.GetBuffer();
                }
            }

            /// <summary> 
            /// 將一個序列化後的byte[]數組還原         
            /// </summary>
            /// <param name="Bytes"></param>         
            /// <returns></returns> 
            public object BytesToObject(byte[] Bytes)
            {
                using (MemoryStream ms = new MemoryStream(Bytes))
                {
                    IFormatter formatter = new BinaryFormatter(); return formatter.Deserialize(ms);
                }
            }
        }
    }
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved