摘要: using System.IO;using System.Runtime.Serialization.Formatters.Binary;Hashtable aa = new Hashtable();private void buttonSave_Click(object sender, EventArgs e){FileStream fs = new FileStream("e:\\400tel.dat", FileMode.Create);BinaryFormatter bf = new BinaryFormatter();bf.Serialize(fs, aa);fs 阅读全文
posted @ 2011-08-19 13:25 ljlxyf 阅读(597) 评论(1) 推荐(0)
摘要: using System;using ICSharpCode.SharpZipLib;using ICSharpCode.SharpZipLib.Checksums;using System.IO;using ICSharpCode.SharpZipLib.Zip;using System.Collections;/// <summary>/// Common 的摘要说明。/// </summary>public class commRar{ public commRar() { // // TODO: 在此处添加构造函数逻辑 // } /// <summary& 阅读全文
posted @ 2011-08-19 09:18 ljlxyf 阅读(317) 评论(0) 推荐(0)