摘要:
01.using System.IO; 02.using System.Runtime.Serialization.Formatters.Binary; 03..... 04.... 05. 06.Hashtable aa = new Hashtable(); 07. 08.private void buttonSave_Click(object sender, EventArgs e) 09.{ 10. FileStream fs = new FileStream("e:\\aa.dat", FileMode.Create); 11. BinaryFormat... 阅读全文