I use binary readers and writers to read / write data to a file. For example, for this:
MyWriter.Write(Ord(TMyEnum(2)));
I expect it to write SmallInt for reading with
MyReader.ReadSmallInt
But in the IDE, I see that it writes a byte. How to get the author to write the type I want?
user1593881
source
share