2020年7月12日

摘要: 1 class Program 2 { 3 static void Main(string[] args) 4 { 5 //序列化:将数据转换为二进制 6 //反序列化:将二进制转换为数据 7 //序列化的作用:传递数据 8 Person p = new Person(); 9 Person p2 阅读全文

posted @ 2020-07-12 21:50 NCY_1991 阅读(146) 评论(0) 推荐(0) 编辑