■ Enumerable 클래스의 ToArray<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 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 |
List<Code> codeList = new List<Code> { new Code { Name = "코드1", Value = "100" }, new Code { Name = "코드2", Value = "200" }, new Code { Name = "코드3", Value = "300" }, new Code { Name = "코드4", Value = "400" } }; string[] codeArray = codeList.Select(code => code.Name).ToArray(); foreach(string code in codeArray) { Console.WriteLine(code); } /* 코드1 코드2 코드3 코드4 */ /// <summary> /// 코드 /// </summary> public class Code { //////////////////////////////////////////////////////////////////////////////////////////////////// Property ////////////////////////////////////////////////////////////////////////////////////////// Public #region 명칭 - Name /// <summary> /// 명칭 /// </summary> public string Name { get; set; } #endregion #region 값 - Value /// <summary> /// 값 /// </summary> public string Value { get; set; } #endregion } |