Tagged Questions

0
votes
1answer
232 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() ...
0
votes
2answers
183 views

VB.net BinaryWriter Problem

In c# i could do it like: send.Write((ushort)9); "send" is an instance of BinaryWriter, how can i do it in vb.net ? I've tried it like: send.Write((UShort)9) but i get "UShort is a type and cannot ...