Answers for "get string list from text file c# and print out"

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