91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

c#自定義序列化怎么實現

c#
小億
89
2024-05-29 13:16:12
欄目: 編程語言

在C#中,可以通過實現ISerializable接口來自定義序列化過程。以下是一個簡單的示例代碼:

using System;
using System.IO;
using System.Runtime.Serialization;
using System.Runtime.Serialization.Formatters.Binary;

[Serializable]
public class CustomObject : ISerializable
{
    public int Id { get; set; }
    public string Name { get; set; }

    public CustomObject() { }

    public CustomObject(int id, string name)
    {
        Id = id;
        Name = name;
    }

    // 實現ISerializable接口的GetObjectData方法
    public void GetObjectData(SerializationInfo info, StreamingContext context)
    {
        info.AddValue("Id", Id);
        info.AddValue("Name", Name);
    }

    // 自定義的反序列化方法
    public CustomObject(SerializationInfo info, StreamingContext context)
    {
        Id = (int)info.GetValue("Id", typeof(int));
        Name = (string)info.GetValue("Name", typeof(string));
    }
}

public class Program
{
    public static void Main()
    {
        CustomObject obj = new CustomObject(1, "Object1");

        // 序列化對象
        IFormatter formatter = new BinaryFormatter();
        using (Stream stream = new FileStream("data.bin", FileMode.Create, FileAccess.Write, FileShare.None))
        {
            formatter.Serialize(stream, obj);
        }

        // 反序列化對象
        using (Stream stream = new FileStream("data.bin", FileMode.Open, FileAccess.Read, FileShare.Read))
        {
            CustomObject deserializedObj = (CustomObject)formatter.Deserialize(stream);
            Console.WriteLine($"Id: {deserializedObj.Id}, Name: {deserializedObj.Name}");
        }
    }
}

在上面的示例中,我們創建了一個自定義的CustomObject類,并實現了ISerializable接口。在GetObjectData方法中,我們將需要序列化的數據添加到SerializationInfo對象中。在自定義的反序列化構造函數中,我們獲取SerializationInfo對象中的數據來重新構造對象。

通過這種方式,我們可以完全控制對象的序列化和反序列化過程,實現自定義的序列化邏輯。

0
郁南县| 拉萨市| 自贡市| 九江县| 隆回县| 大方县| 漳平市| 无极县| 渝北区| 崇文区| 盈江县| 秭归县| 寻甸| 封开县| 鸡泽县| 电白县| 绥阳县| 晋城| 郯城县| 广水市| 佛山市| 揭阳市| 宁津县| 常州市| 句容市| 桐乡市| 额尔古纳市| 张家港市| 黄骅市| 乐陵市| 冀州市| 墨竹工卡县| 柞水县| 达孜县| 荔波县| 耒阳市| 岫岩| 茶陵县| 疏附县| 仙游县| 巴楚县|