Tagged Questions

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 ...
0
votes
1answer
89 views

Reading Binary file on Windows phone

I want to read a binary file using BinaryReader, but I keep getting an exception: using (var stream = File.Open("file.bin", FileMode.Open, FileAccess.Read)) { using (BinaryReader ...
0
votes
4answers
1k views

Is there a BinaryReader in C++ to read data written from a BinaryWriter in C#?

I've written several ints, char[]s and the such to a data file with BinaryWriter in C#. Reading the file back in (in C#) with BinaryReader, I can recreate all of the pieces of the file perfectly. ...