Tagged Questions
11
votes
3answers
1k views
Why a BinaryWriter closes the outer Stream on disposal, and how to prevent that? (.NET C#)
I have one method that receives a Stream to write on it using a BinaryWriter. But when I dispose this BinaryWriter it also closes the stream. Can I leave it undisposed so I can leave my stream open?
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 ...
1
vote
2answers
161 views
How to read and write “SET OF” type into a file using BinaryWriter?
This is for Delphi Prism.
Say, I have the following enum SET type that I would like to save into a binary file.
Fruit = (Apple, Banana, Mango, Cherry, Grapes, BlueBerry);
Fruits = set of Fruit;
...
1
vote
2answers
108 views
Delphi Prism: Does BinaryWriter “Write method” work the same as Writeln method from Delphi?
I am working with Delphi Prism and creating and writing into binary file using BinaryWriter as follows.
method TUnit.Write(bw:BinaryWriter);
var
i:Integer;
begin
bw.write(ord(uType));
...
1
vote
2answers
125 views
Modify data via StreamWriter or file writes?
I need to create binary data file. It cannot be created in one pass, I need to serialize some data, then go back and write offsets in the header. File will comfortably fit in memory (a few megabytes). ...
1
vote
1answer
63 views
extracting data from .net Data.ToBinary()
I need to read custom-serialized binary data, written using BinaryWriter class.
To store a date, the original designers used BinaryWriter.Write( Data.ToBinary() );
This article sort-of mentions how ...
0
votes
1answer
230 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()
...