■ Enumerable 클래스의 ToList<T> 확장 메소드를 사용해 리스트 객체를 구하는 방법을 보여준다.
▶ 예제 코드 (C#)
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 |
string[] textArray = new string[] { "가", "나나", "다다다", "라라라라", "마마마마마" }; List<int> textLengthArray = textArray.Select(text => text.Length).ToList(); foreach(int textLength in textLengthArray) { Console.WriteLine(textLength); } /* 1 2 3 4 5 */ |