You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
781 B
C#

using System;
using System.Linq;
class LinqExercise2
{
static void Main()
{
int[] n1 =
{
1, 3, -2, -4, -7, -3, -8, 12, 19, 6, 9, 10, 14
};
Console.Write("\nLINQ : Using multiple WHERE clause to find the +ve numbers within the list : ");
Console.Write("\n-----------------------------------------------------------------------------");
var nQuery =
from VrNum in n1
where VrNum > 0
where VrNum < 12
select VrNum;
Console.Write("\nThe numbers within the range of 1 to 11 are : \n");
foreach(var VrNum in nQuery)
{
Console.Write("{0} ", VrNum);
}
Console.Write("\n\n");
}
}