摘要:
直接贴代码吧SqlHelperusing System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Data.SqlClient;using System.Data;namespace ADMEWinForm{ class SqlHelper { private static r... 阅读全文
摘要:
序列化:是将对象状态转换为可保持或传输的格式的过程,原因有两个,第一是想永久的保存这些数据,以便将来可以重建这些数据。第二是想把数据从一个应用程序域发送到另外一个应用程序域中去。反序列化:就是把存储介质中的数据重新构建为对象的一个过程。首先创建一个类MyObject,如以下代码MyObjectusing System;using System.Collections.Generic;using S... 阅读全文