4
Answers

linq

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)