BinLib.Blib.ReadAllBytes C# (CSharp) Method

ReadAllBytes() private method

private ReadAllBytes ( string fileName ) : byte[]
fileName string
return byte[]
        private byte[] ReadAllBytes(string fileName)
        {
            byte[] b = GetFile(fileName).Content;
            return (byte[]) b.Clone();
        }