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

溫馨提示×

C#序列化怎么自定義

c#
小億
103
2024-03-01 10:58:17
欄目: 編程語言

在C#中,可以通過實現ISerializable接口來自定義對象的序列化方式。ISerializable接口要求實現GetObjectData方法和一個構造函數,通過這兩個方法可以手動控制對象的序列化和反序列化過程。

以下是一個簡單的示例,展示如何自定義一個Student類的序列化方式:

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

[Serializable]
public class Student : ISerializable
{
    public string Name { get; set; }
    public int Age { get; set; }

    public Student(string name, int age)
    {
        this.Name = name;
        this.Age = age;
    }

    // 自定義序列化方法
    public void GetObjectData(SerializationInfo info, StreamingContext context)
    {
        info.AddValue("Name", this.Name);
        info.AddValue("Age", this.Age);
    }

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

class Program
{
    static void Main()
    {
        Student student = new Student("Alice", 20);

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

        // 反序列化對象
        Student deserializedStudent;
        using (Stream stream = new FileStream("student.bin", FileMode.Open, FileAccess.Read, FileShare.Read))
        {
            deserializedStudent = (Student)formatter.Deserialize(stream);
        }

        Console.WriteLine($"Name: {deserializedStudent.Name}, Age: {deserializedStudent.Age}");
    }
}

在上面的示例中,通過實現ISerializable接口,我們自定義了Student類的序列化和反序列化方法,并通過BinaryFormatter來進行對象的序列化和反序列化操作。自定義序列化方法中使用SerializationInfo對象來添加需要序列化的屬性值,自定義反序列化方法中使用SerializationInfo來獲取反序列化的屬性值。

0
两当县| 南宫市| 苗栗市| 阿拉尔市| 察隅县| 大埔县| 肥东县| 古交市| 平塘县| 泌阳县| 资讯| 英超| 南川市| 万全县| 如东县| 涪陵区| 五家渠市| 通河县| 东乌珠穆沁旗| 曲松县| 加查县| 开鲁县| 阿巴嘎旗| 奉贤区| 通许县| 肥西县| 吉林市| 新巴尔虎左旗| 壤塘县| 巴南区| 宿迁市| 扶余县| 桦甸市| 延长县| 新密市| 定远县| 绥江县| 通榆县| 沧州市| 芦溪县| 和田市|