Reko.Core.Services.FileSystemServiceImpl.ReadAllBytes C# (CSharp) Метод

ReadAllBytes() публичный Метод

public ReadAllBytes ( string filePath ) : byte[]
filePath string
Результат byte[]
        public byte[] ReadAllBytes(string filePath)
        {
            return File.ReadAllBytes(filePath);
        }