Tagged Questions

0
votes
2answers
79 views

C# writing binary data to a binary file

I have n no of variable length byte array like this. (ascii representation) 1 0 obj<<.........>>endobj 2 0 obj<<...........................>>endobj 3 0 …
1
vote
9answers
244 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 …
8
votes
3answers
241 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?
0
votes
2answers
57 views

VB.net BinaryWriter Problem

Hi, 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 …