Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试写入FileStream. 在最后一次写入之后,我看到stream.Position的是11,247,160. 在这个检查之后,所有的都是Flush, Close,然后 using 会自动处理FileStream. 这也是它到达包含调用Position的行时的值。Close但是,当我在资源管理器中查看文件时,大小为 12,847,148 字节,或大 1.5MB。当我读回数据时,最后有一堆乱码数据。有没有人见过这个?
FileStream
stream.Position
11,247,160
Flush
Close
Position
谢谢你。