Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
  1. what is the java DataInputStream readFully method equivalent in C# BinaryReader?
  2. What is the java DataInputStream mark and reset methods equivalent in C# BinaryReader or Stream?
share|improve this question

1 Answer

up vote 2 down vote accepted
  1. see BinaryReader.Read(byte[], int, int)
  2. There is no object that have this behavior in .NET, you should implement it by yourself.
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.