string path = "C:UsersPublicTestFolderWriteText.txt"; // Read as a single string string text = System.IO.File.ReadAllText(path); // Read each line into a string array string[] lines = System.IO.File.ReadAllLines(path);