Tagged Questions
2
votes
9answers
1k views
Why does BinaryWriter prepend gibberish to the start of a stream? How do you avoid it?
I'm debugging some issues with writing pieces of an object to a file and I've gotten down to the base case of just opening the file and writing "TEST" in it. I'm doing this by something like:
static ...
0
votes
1answer
64 views
Binary Reader and Writer open at same time?
I'm writing code that deals with a file that uses hashes. I need to read a chunk, then hash it, then write it, then read another chunk, etc.
In other words, I need to do a lot of reading and ...
0
votes
1answer
255 views
C# file send, stream problem
I have a server and a client. Server sends an executable and an input.txt to the client. Client should execute it and send output to the server but I have a problem. When I try to run executable it ...
0
votes
4answers
402 views
Can't write to file using binarywriter
Why does this code not write my string to the file:
string file = "Myfile.txt";
MemoryStream ms = new MemoryStream();
void writeToFile(string text)
{
...
0
votes
1answer
233 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()
...