C#공부하기 24 ★ Select구 / Where구★

 

Select구와 Where구를 C#공부하기24번째글에서 공부하겠습니다. ^^

날은 많이 흐리지만 마음은 밝았으면 좋겠어요 ^--^

 

 

Select구

 

varb =    

from p in a

select p.X;        // x만 추출


foreach(var p in b)

{

Console.Write("{0}, p")

}

 

 

var b= a.Select(p => p.X);

 


 

Where구

 

Where연산자는 제한(restriction)을 주는 연산자이다.

var b=

from p in a

where p.X>2 // 이 조건에 만족하는 것만 조회된다.

select p;

 

foreach(var p in b)

{

Console.Write("{0}\n", p)

}

 

 

C#공부하기 24 ★ Select구 / Where구★

 

+ Recent posts