c# text file code example
Example 1: c sharp how to read a text file
string text = System.IO.File.ReadAllText(@"C:\filepath\file.txt");
string[] lines = System.IO.File.ReadAllLines(@"C:\filepath\file.txt");
Example 2: write text files with C#
string createText = "Hello and Welcome" + Environment.NewLine;
File.WriteAllText(path, createText);
...
string readText = File.ReadAllText(path);
Example 3: how to read a text file C#
string[] text = System.IO.File.ReadAllLines(@"C:\users\username\filepath\file.txt");