c# reading from text file put all lines into list 2020 code example
Example: c# read text file to list string
List<string> lines = System.IO.File.ReadLines(completePath).ToList();
List<string> lines = System.IO.File.ReadLines(completePath).ToList();