■ Enumerable 클래스의 ToDictionary<TSource, TKey> 확장 메소드를 사용해 딕셔너리를 구하는 방법을 보여준다.
▶ 예제 코드 (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" } }; Dictionary<string, Code> codeDictionary = codeList.ToDictionary(code => code.Name); foreach(KeyValuePair<string, Code> keyValuePair in codeDictionary) { Console.WriteLine($"{keyValuePair.Key}, {keyValuePair.Value.Value}"); } /* 코드1, 100 코드2, 200 코드3, 300 코드4, 400 */ /// <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 } |