摘要:
.net framework中支持二进制序列化、SOAP序列化、Xml序列化和自定义的序列化。如果有一个学生类:using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.IO;using System.Xml;using System.Xml.Serialization;//XML序列化namespace StudentManage{ [Serializable] //指定可以序列化 public class Student:IComparable<... 阅读全文
2012年10月19日 #