I\'m quite new to C# so please bear with me. I\'m reading (using FileStream) data (fixed size) to small array, process the data and then read again and so on to the end of f
FileStream derives from Stream, and Stream is a very generic class and the description of Read is from that generic class. A stream can also be a network stream for example, and there, data might not be currently available, because it has not been send. For a FileStream you can assume, that you will get three types of return values: