File I/O can be a major performance bottleneck for many apps. It’s all too easy to read files in a way that is massively inefficient. Classes like FileStream
and BinaryReader
make it really easy to write super slow code. Today’s article explores why this happens and what can be done about it. Read on to learn more!