■ Enumerable 클래스의 GroupBy<TSource, TKey> 확장 메소드를 사용해 객체 컬렉션에서 특정 객체 속성 값의 집합을 구하는 방법을 보여준다.
▶ Program.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 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 |
using System; using System.ComponentModel; using System.Collections.ObjectModel; using System.Linq; namespace TestProject { /// <summary> /// 프로그램 /// </summary> public class Program { //////////////////////////////////////////////////////////////////////////////////////////////////// Method ////////////////////////////////////////////////////////////////////////////////////////// Static //////////////////////////////////////////////////////////////////////////////// Private #region 프로그램 시작하기 - Main() /// <summary> /// 프로그램 시작하기 /// </summary> private static void Main() { ObservableCollection<Employee> collection = Employee.GetCollection(); Employee employee = collection.FirstOrDefault(); if(employee != null) { PropertyDescriptorCollection propertyDescriptorCollection = TypeDescriptor.GetProperties(employee); PropertyDescriptor propertyDescriptor = propertyDescriptorCollection["Sex"]; var result = collection.GroupBy(p => propertyDescriptor.GetValue(p)) .Select(p => p.FirstOrDefault()) .OrderBy(p => propertyDescriptor.GetValue(p)); foreach(var item in result) { Console.WriteLine((item as Employee).Sex); } } } #endregion } } |
▶ Employee.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 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 |
using System.Collections.ObjectModel; namespace TestProject { /// <summary> /// 직원 /// </summary> public class Employee { //////////////////////////////////////////////////////////////////////////////////////////////////// Property ////////////////////////////////////////////////////////////////////////////////////////// Public #region ID - ID /// <summary> /// ID /// </summary> public string ID { get; set; } #endregion #region 성명 - Name /// <summary> /// 성명 /// </summary> public string Name { get; set; } #endregion #region 성별 - Sex /// <summary> /// 성별 /// </summary> public string Sex { get; set; } #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Method ////////////////////////////////////////////////////////////////////////////////////////// Static //////////////////////////////////////////////////////////////////////////////// Public #region 컬렉션 구하기 - GetCollection() /// <summary> /// 컬렉션 구하기 /// </summary> /// <returns>컬렉션</returns> public static ObservableCollection<Employee> GetCollection() { ObservableCollection<Employee> collection = new ObservableCollection<Employee>(); for(int i = 0; i < 100000; i++) { collection.Add ( new Employee() { ID = i.ToString(), Name = "직원" + i.ToString(), Sex = (i % 3 == 1 ? "남" : "여") } ); } return collection; } #endregion } } |