Sorry, your browser cannot access this site
This page requires browser support (enable) JavaScript
Learn more >

序列化和反序列化 一、序列化 1.非字符串类型转字节数组 关键类:BitConverter 命名空间:System 主要作用:非字符串类型 和 字节数组 的相互转化 123byte[] bytes1 = BitConverter.GetBytes(1);byte[] bytes2 = BitConverter.GetBytes(1.2f);byte[] bytes3 = BitConvert...