Orhan SALUR

Orhan SALUR

  • NA
  • 49
  • 23k

linq

Jun 16 2015 8:05 PM
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)