Read in binary stream, without using C# BinaryReader Class

  • Thread starter Thread starter RP2001
  • Start date Start date
R

RP2001

Other than using the BinaryReader Class, is there any other way to
read in from a binary stream/file?

Thanks!
-RP
 
The reader just wraps a Stream instance. You could read the bytes directly
from the stream if you want.
 
Back
Top