Answers for "how to read a txtfist to list in c#"

C#
4

c# read text file to list string

List<string> lines = System.IO.File.ReadLines(completePath).ToList();
Posted by: Guest on October-12-2020

C# Answers by Framework

Browse Popular Code Answers by Language