LINQ : Language INtegrated Query, C#에 도입된 통합된 데이터 질의 기능 SQL 언어랑 비슷하며 데이터를 다루기 위한 문법이다. Name과 Height를 프로퍼티로 가지는 Profile 클래스가 있다하자. 다음과 같은 배열에서 Height가 175 미만인 인스턴스를 오름차순으로 정렬하고 싶을때 만족하는 Profile 인스턴스만 찾고 싶다면 긴 문법을 작성해야한다. Profile[] arrProfile = { new Profile(){ Name = "정우성", Height = 186}, new Profile(){ Name = "김태희", Height = 158}, new Profile(){ Name = "고현정", Height = 172}, new Profile(){ Name =..