BinLib.Blib.ReadAllLines C# (CSharp) Method

ReadAllLines() public method

public ReadAllLines ( string fileName ) : string[]
fileName string
return string[]
        public string[] ReadAllLines(string fileName)
        {
            string s = ReadAllText(fileName);
            return s.Replace("\n", "").Split(Convert.ToChar("\r"));
        }