简体   繁体   中英

Java DataInputStream methods in C# BinaryReader

  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?
  1. see BinaryReader.Read(byte[], int, int)
  2. There is no object that have this behavior in .NET, you should implement it by yourself.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM