What is C# analog of C fread()?
fread(inbuf, 1, AUDIO_INBUF_SIZE, f);
What could be its exact analog?
What is C# analog of C fread()?
fread(inbuf, 1, AUDIO_INBUF_SIZE, f);
What could be its exact analog?
The closest would be Stream.Read
byte[] buffer = new byte[8192];
int bytesRead = stream.Read(buffer, 0, buffer.Length);
Stream.Read(...)
http://msdn.microsoft.com/en-us/library/system.io.stream.read.aspx