BinLib.Blib.ReadAllText C# (CSharp) Method

ReadAllText() private method

private ReadAllText ( string fileName ) : string
fileName string
return string
        private string ReadAllText(string fileName)
        {
            return Encoding.Default.GetString(ReadAllBytes(fileName));
        }