这几句是什么意思?(c#)急急急急急急

来源:百度知道 编辑:UC知道 时间:2024/05/31 13:02:03
Stream ReceiveStream = result.GetResponseStream();

Byte[] read = new Byte[512];

int bytes = ReceiveStream.Read(read, 0, 512);

//定义接收流
Stream ReceiveStream = result.GetResponseStream();

//定义接收数组
Byte[] read = new Byte[512];

//接收数据,并返回接收到的字节数保存再变量bytes中
int bytes = ReceiveStream.Read(read, 0, 512);