CSPspEmu.Hle.Managers.HleIoWrapper.ReadBytes C# (CSharp) Method

ReadBytes() public method

public ReadBytes ( string FileName ) : byte[]
FileName string
return byte[]
        public byte[] ReadBytes(string FileName)
        {
            using (var File = Open(FileName, HleIoFlags.Read, SceMode.File))
            {
                return File.ReadAll();
            }
        }