刚学的文件操作
FileStream F = new FileStream("test.dat",FileMode.OpenOrCreate, FileAccess.ReadWrite);
for (int i = 1; i <= 20; i++)
{
F.WriteByte((byte)i);
}
F.Position = 0;
for (int i = 0; i <= 20; i++)
{
Console.Write(F.ReadByte() + " ");
}
F.Close();
Console.ReadKey();
// 结果为:1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 -1
为什么会有结果 后面还有一个 -1 呀
-1是输出导出吗
页:
[1]