4
Answers

linq

Orhan SALUR

Orhan SALUR

9y
405
1
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)