序列化:将对象转换成二进制串的过程 反序列化:将序列化过程中产生的二进制串转换成对象的过程 作用:传输数据 using System; namespace WriteTextContent { [Serializable] public class Person { public string Name { get; set; } public int Age { get; set; } public char Sex { get; set; } public string DisplayInf