Tagged Questions
0
votes
1answer
243 views
Does binarywriter.flush() also flush the underlying filestream object?
I have got a code snippet as follows:
Dim fstream = new filestream(some file here)
dim bwriter = new binarywriter(fstream)
while not end of file
read from source file
bwriter.write()
...