中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

C#字典的序列化與反序列化

c#
小樊
115
2024-09-11 10:30:16
欄目: 編程語言

在C#中,可以使用System.Runtime.Serialization命名空間中的DataContractSerializer類來實現字典的序列化和反序列化

首先,需要添加System.Runtime.Serialization的引用。

using System;
using System.Collections.Generic;
using System.IO;
using System.Runtime.Serialization;

class Program
{
    static void Main(string[] args)
    {
        // 創建一個字典對象
        Dictionary<string, int> dictionary = new Dictionary<string, int>
        {
            {"apple", 1},
            {"banana", 2},
            {"orange", 3}
        };

        // 序列化字典
        string serializedDictionary = SerializeDictionary(dictionary);
        Console.WriteLine("Serialized dictionary: " + serializedDictionary);

        // 反序列化字典
        Dictionary<string, int> deserializedDictionary = DeserializeDictionary<string, int>(serializedDictionary);
        Console.WriteLine("Deserialized dictionary:");
        foreach (KeyValuePair<string, int> entry in deserializedDictionary)
        {
            Console.WriteLine($"Key: {entry.Key}, Value: {entry.Value}");
        }
    }

    public static string SerializeDictionary<TKey, TValue>(Dictionary<TKey, TValue> dictionary)
    {
        using (MemoryStream memoryStream = new MemoryStream())
        {
            DataContractSerializer serializer = new DataContractSerializer(typeof(Dictionary<TKey, TValue>));
            serializer.WriteObject(memoryStream, dictionary);
            memoryStream.Position = 0;
            using (StreamReader reader = new StreamReader(memoryStream))
            {
                return reader.ReadToEnd();
            }
        }
    }

    public static Dictionary<TKey, TValue> DeserializeDictionary<TKey, TValue>(string serializedDictionary)
    {
        using (MemoryStream memoryStream = new MemoryStream())
        {
            using (StreamWriter writer = new StreamWriter(memoryStream))
            {
                writer.Write(serializedDictionary);
                writer.Flush();
                memoryStream.Position = 0;
                DataContractSerializer serializer = new DataContractSerializer(typeof(Dictionary<TKey, TValue>));
                return (Dictionary<TKey, TValue>)serializer.ReadObject(memoryStream);
            }
        }
    }
}

這個示例中,我們創建了一個包含水果名稱和數量的字典。然后,我們使用SerializeDictionary方法將字典序列化為字符串,并使用DeserializeDictionary方法將字符串反序列化為字典。最后,我們打印出序列化和反序列化后的字典。

0
方山县| 清镇市| 石家庄市| 即墨市| 台州市| 望江县| 沂水县| 石柱| 永顺县| 哈尔滨市| 永善县| 浠水县| 鹿泉市| 惠东县| 格尔木市| 德江县| 恭城| 柘荣县| 溆浦县| 桑日县| 抚顺市| 青田县| 钟祥市| 邵武市| 无为县| 高平市| 新闻| 六盘水市| 乐东| 彭山县| 长垣县| 象山县| 锦州市| 玛曲县| 沂南县| 昌平区| 香格里拉县| 高安市| 资兴市| 东乡族自治县| 工布江达县|