c# filestream readFileStream fs = new FileStream("d:\\A500000001801110901.txt",FileMode.Open);byte[] b = new byte[10000];fs.Read(b,0,b.Length);read方法中的第二个参数是什么意思?请举例说明.
来源:学生作业帮助网 编辑:作业帮 时间:2024/11/16 10:33:07
x)KVVHI-.)JMU )n@n0V`ZPJq45 CCCCKC%BT=|͚'zX
fΎg-ڿXɎ}OuXٌ>="},^S_`x,݇`)J_`g3,S)+]bKv<ٻOI{pV ˦@͞y)
@Ч˚NV0Q9ZPZh gڟtCgS=Bn6mF 6?߲@i!p';_Nb_\g% (
c# filestream readFileStream fs = new FileStream("d:\\A500000001801110901.txt",FileMode.Open);byte[] b = new byte[10000];fs.Read(b,0,b.Length);read方法中的第二个参数是什么意思?请举例说明.
c# filestream read
FileStream fs = new FileStream("d:\\A500000001801110901.txt",FileMode.Open);
byte[] b = new byte[10000];
fs.Read(b,0,b.Length);
read方法中的第二个参数是什么意思?请举例说明.
c# filestream readFileStream fs = new FileStream("d:\\A500000001801110901.txt",FileMode.Open);byte[] b = new byte[10000];fs.Read(b,0,b.Length);read方法中的第二个参数是什么意思?请举例说明.
第二个参数是用来表示,你读取的数据填充数组的那个Index 的
如 fs.Read(b, 1, b.Length-1); 是读取文件将数据放在 数组的第2个元素 到 Length-1个元素之间