码迷,mamicode.com
首页 > 其他好文 > 详细

<C#>序列化

时间:2014-07-14 15:21:59      阅读:173      评论:0      收藏:0      [点我收藏+]

标签:des   style   blog   color   文件   os   

序列化就是为了简化复杂的数据结构的存储提出来的概念。

序列化也就是把类的对象作为一个整体存入文件,反序列化则是相反过程

#using System;
#using System.IO;
#using System.Collections.Generic;
#using System.Runtime.Serialization.Formatters.Binary;
#using System.Runtime.Serialization;

class SerialFile
{
    static void Main()
   {
             Dictionary<string,string>  h = new Dictionary<string,string>();
             h.Add("Key1","Value1");
             h.Add("Key2","Value2");
             FileStream fs = new FileStream(@"d:/d.dat",FileMode.Create);
             BinaryFormatter formatter = new BinaryFormatter();
             formatter.Serialize(fs,h);
             fs.close();
             fs = new FileStream(@"d:/d.dat",FileMode.Open);
             h.Clear();
             h = (Dictionary<string,string>)formatter.Deserialize(fs);
             fs.Close();
             foreach(KeyValuePair<string,string> h1 in h)
             {
                       Console.WriteLine{"{0}:{1}",h1.Key,h1.Value};
              }
   }  
}    

 

<C#>序列化,布布扣,bubuko.com

<C#>序列化

标签:des   style   blog   color   文件   os   

原文地址:http://www.cnblogs.com/virgil/p/3841688.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!