- List 에서 List 으로 타입 변경을 해봅시다.
List<int> intList = new List<int>() { 1, 2, 3, 4, 5, 6, 7 };
List<string> strList = intList.Select(num => num.ToString() + "번").ToList();
결과
'프로그래밍 > C#' 카테고리의 다른 글
[C#] Enum의 Index값 가져오기 (0) | 2022.11.08 |
---|---|
[C#] WPF Window Close 이벤트 처리 (0) | 2022.10.27 |
[C#] 리스트에서 랜덤으로 값 가져오기 (0) | 2022.10.11 |
[WPF] INotifyPropertyChanged 구현 (0) | 2022.10.07 |
[WPF] Textbox 값 변경 이벤트 (0) | 2022.10.07 |