Tagged Questions
3
votes
4answers
189 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
789 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
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 ...