15.1 LINQLINQ(Language INtegrated Query)C#에 통합된 데이터 질의 기능기본적으로 Query는 다음 내용을 포함from: 어떤 데이터 집합에서 찾을 것인가?where: 어떤 값의 데이터를 찾을 것인가?select: 어떤 항목을 추출할 것인가?class Profile{ public string Name {get; set;} public int Height {get; set;}}Profile[] arrProfile = { new Profile(){Name="엄준식1", Height=170}, new Profile(){Name="엄준식2", Height=160}, ..