본문 바로가기

Programing (프로그래밍)/WPF & C# (C Sharp)

WPF & C# - List<string> 동적 배열 ( 리스트 / array / dictionary )

728x90
반응형
 WPF & C# - List<string> 동적 배열 추가, 삭제 ( 리스트 / array / dictionary / AddRange / RemoveAll )

 

 

파일읽고 라인별로 배열에 넣기

List<string> list = new List<string>();
string saveFile = @"data.txt";
using (StreamReader sw = new StreamReader(saveFile))    // 파일 읽기
{
    list.AddRange(sw.ReadToEnd().Split('\n','\r'));    // 라인별로 배열에 넣기
    list.RemoveAll(s => s.Trim() == "");    // 빈 문자열은 배열에서 삭제
}

 

참고

insurang.tistory.com/259

 

WPF & C# - Listbox, List ( 리스트박스 / 추가 / 제거 / binding / 바인딩)

 WPF & C# - Listbox, List ( 리스트박스 / 추가 / 제거 / binding / 바인딩) MainWindow.xaml.cs 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25         xmlns="http://schemas..

insurang.tistory.com

 

728x90
반응형