Dev2.Common.Wrappers.FileWrapper.ReadAllBytes C# (CSharp) Method

ReadAllBytes() public method

public ReadAllBytes ( string path ) : byte[]
path string
return byte[]
        public byte[] ReadAllBytes(string path)
        {
            return File.ReadAllBytes(path);
        }