摘要:
/// /// 将 Stream 转成 byte[] /// /// /// public static byte[] StreamToBytes(Stream stream) { byte[] bytes = new byte[stream.Length]; stream.Read(bytes, 0, bytes.Length); // 设置当前流的位置为流的... 阅读全文
posted @ 2019-10-23 09:50
深南大道
阅读(510)
评论(0)
推荐(1)

浙公网安备 33010602011771号