Which Among The Following Attempts To Read Up To Count Bytes #577
Which among the following attempts to read up to count bytes into buffer starting at buffer[offset], returning the number of bytes successfully read?
This multiple choice question (MCQ) is related to the book/course
gs gs108 CSharp.
It can also be found in
gs gs108 Console I/O Operations and Stream Classes - Introduction of Stream Classes - Quiz No.1.
Which among the following attempts to read up to count bytes into buffer starting at buffer[offset], returning the number of bytes successfully read?
int ReadByte()
int Read(byte[] buffer, int offset, int count)
Void WriteByte(byte value)
None of the mentioned