Stream 和 Byte[]互操作
摘要:
在.Net的IO操作中经常会用到Stream和Byte[],有两种形式: 一.Stream->Byte[]: 1.如果Stream的 Length属性可读,非常的简单,代码如下: 1 private byte[] GetBytes(Stream stream) 2 { 3 if (stream.CanSeek) 4 {... 阅读全文
posted @ 2007-10-27 20:49 唐朝程序员 阅读(1213) 评论(2) 推荐(1) 编辑