System.IO.FileStream.ReadBytes(string)

Here are the examples of the csharp api System.IO.FileStream.ReadBytes(string) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Examples 7

19 Source : filestream.cs
with Apache License 2.0
from theolivenbaum

private byte[] GetInternalBuffer()
        {
            if (this._buffer == null)
            {
                this._buffer = FileStream.ReadBytes(this.name);

            }

            return this._buffer;
        }