public static byte [] StreamToBytes(Stream stream) |
{ |
List< byte > bytes = new List< byte >(); |
int temp = stream.ReadByte(); |
while (temp != -1) |
{ |
bytes.Add(( byte )temp); |
temp = stream.ReadByte(); |
} |
return bytes.ToArray(); |
} |
by: 发表于:2018-01-03 10:42:26 顶(0) | 踩(0) 回复
??
回复评论