I want to know what is the Java DataInputStream class equivalent in C#
You are looking for BinaryReader:
var reader = new BinaryReader(myStream);
var value = reader.ReadInt32();
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With