BinLib.Blib.ReadAllText C# (CSharp) 메소드

ReadAllText() 개인적인 메소드

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