DBreeze.Programmers.MFileStream.Read C# (CSharp) Method

Read() public method

public Read ( byte array, int offset, int count ) : int
array byte
offset int
count int
return int
        public int Read(byte[] array, int offset, int count)
        {
            return fs.Read(array, offset, count);
        }