Inheritance: System.IO.BinaryReader
 public static string DeserializeToString(this byte[] bytes)
 {
     using (var m = new MemoryStream(bytes))
     using (var r = new SerializingBinaryReader(m))
         return r.ReadBinaryString();
 }
示例#2
0
		public static string DeserializeToString(this byte[] bytes)
		{
			using (var m = new MemoryStream(bytes))
			using (var r = new SerializingBinaryReader(m))
				return r.ReadBinaryString();
		}