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

溫馨提示×

如何在C#中實現自定義序列化

c#
小樊
89
2024-08-19 15:02:33
欄目: 編程語言

在C#中實現自定義序列化可以通過實現ISerializable接口來實現。該接口定義了兩個方法GetObjectDataISerializable(SerializationInfo info, StreamingContext context)

下面是一個簡單的示例代碼:

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

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

    public CustomObject()
    {
    }

    protected CustomObject(SerializationInfo info, StreamingContext context)
    {
        Id = (int)info.GetValue("Id", typeof(int));
        Name = (string)info.GetValue("Name", typeof(string));
    }

    public void GetObjectData(SerializationInfo info, StreamingContext context)
    {
        info.AddValue("Id", Id);
        info.AddValue("Name", Name);
    }
}

class Program
{
    static void Main()
    {
        CustomObject obj = new CustomObject
        {
            Id = 123,
            Name = "Custom Object"
        };

        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對象中獲取反序列化的數據。

Main方法中,我們創建一個CustomObject對象并將其序列化保存到文件中。然后再從文件中讀取并反序列化該對象,并輸出結果。

0
喜德县| 龙井市| 八宿县| 葵青区| 维西| 内黄县| 长汀县| 安塞县| 都昌县| 巨鹿县| 樟树市| 岳西县| 宁南县| 琼中| 吉安县| 延津县| 郸城县| 望谟县| 尉犁县| 博客| 城步| 敦化市| 鄂尔多斯市| 鹤峰县| 福鼎市| 诏安县| 东至县| 怀安县| 香格里拉县| 石泉县| 菏泽市| 土默特右旗| 石景山区| 新源县| 淮北市| 平定县| 色达县| 巴马| 南川市| 临泽县| 铜陵市|