반응형 readalllines1 [C#] 파일입출력, 읽기/쓰기 System.IO.File 1. 파일 읽기 파일 읽기 테스트를 위해서 ReadTest.txt 파일을 하나 만듬. 사용 핵심함수 System.IO.File.ReadAllLines( path ) : 해당 함수 사용, 반환 값 : string[] 예제코드 class Program { static void Main(string[] args) { ReadFileRes(); } static public void ReadFileRes() { string path = @"D:\ReadTest.txt"; string[] textValuse = System.IO.File.ReadAllLines(path); List restext = new List(); if (textValuse.Length > 0) { foreach (string item in .. 2022. 2. 7. 이전 1 다음 반응형