Tagged Questions

9
votes
1answer
105 views

An elegant way to consume (all bytes of a) BinaryReader?

Is there an elegant to emulate the StreamReader.ReadToEnd method with BinaryReader? Perhaps to put all the bytes into a byte array? I do this: read1.ReadBytes((int)read1.BaseStream.Length); ...but ...
5
votes
3answers
876 views

Issue with C#/.NET BinaryReader.ReadChars()

I've run into what I believe is an issue with the BinaryReader.ReadChars() method. When I wrap a BinaryReader around a raw socket NetworkStream occasionally I get a stream corruption where the stream ...
3
votes
4answers
192 views

I have written the exact code in vb and C# and it doesnt work the same… logic is identical… i hope

Kind of new to C# and trying to broaden my abilities a bit. I have this code in VB: Private Sub BreakdownFilesToCompare(ByRef file1BReader As BinaryReader, _ ...
2
votes
3answers
494 views

How do I read a binary file in C#?

I have a file that exists within a text and a binary image, I need to read from 0 to 30 position the text in question, and the position on 31 would be the image in binary format. What are the steps ...
2
votes
3answers
832 views

How to properly read 16 byte unsigned integer with BinaryReader

I need to parse a binary stream in .NET to convert a 16 byte unsigned integer. I would like to use the BinaryReader.ReadUIntXX() functions but there isn't a BinaryReader.ReadUInt128() function ...
1
vote
2answers
110 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
3answers
2k views

0x00 in a binary file VB.NET

UPDATED BELOW I am reading a Binary file using BinaryReader in VB.NET. The structure of each row in the file is: "Category" = 1 byte "Code" = 1 byte "Text" = 60 Bytes Dim Category ...
1
vote
2answers
323 views

What is the Best way to deserialize a null-terminated string in .NET?

I am reading a message from my network connection which is serialized as a series of null-terminated strings (and other binary data) I could read a char at a time using a BinaryReader, until I find a ...
0
votes
1answer
261 views

Using BinaryReader to read a midi file. (.net)

How would I use a BinaryReader to read a midi file (specifications for the format are here) I'm using vb.net, but I'm willing to see other code (mostly just C#, I can convert it). I'm working on a ...
0
votes
2answers
384 views

Reading custom binary data formats in C# .NET

I'm trying to write a simple reader for AutoCAD's DWG files in .NET. I don't actually need to access all data in the file so the complexity that would otherwise be involved in writing a reader/writer ...