4
Reply

linq

Orhan SALUR

Orhan SALUR

Jun 16 2015 8:05 PM
393
int [] nums = {1, -2, 3, 0, -4, 5}
var posNums = from n in nums where n >0  select n; 
 
hello, how can i code with Query method  

Answers (4)