1
Answer

How to read blocks of data from a file

Photo of Ze Jibe

Ze Jibe

18y
2.4k
1
Hi, I would like to know how to perform, in C#, a function that is similar to C/C++ fread() (reading data from a file in one block to a memory buffer). This one is much faster than the usual fscanf() function. I know FileStream.Read() allows to read byte arrays. But how do we then read something else like double or int arrays? Thanks in adavance for your help, M&Ms

Answers (1)