Please see this file using Hex Editor
:
I am reading the 2 bytes this way:
BinaryReader binaryReader;
int wlen = binaryReader.ReadUInt16();
When I read this 2 bytes my BinaryReader.BaseStream.Position
is 14
but wlen = 16384
and this should be 64. What am I doing wrong?