Last active
October 27, 2015 14:48
-
-
Save WilliamGarrow/d6f58528cabb49f66290 to your computer and use it in GitHub Desktop.
C# - Basic LINQ Example using 'numbers' and 'lowNums' to obtain the data source, create the query, and then execute the query.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Linq; | |
namespace BasicLinqExample.UI | |
{ | |
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
// Basic elements of a query operation | |
// Basic array of int data source | |
int[] numbers = { 14, 37, 8, 6, 7, 2, 0, 5, 4, 1, 3, 9 }; | |
// Create the query | |
var lowNums = | |
from n in numbers | |
where n < 9 | |
select n; | |
Console.WriteLine("Range of numbers < 9 from basic array:"); | |
// Execute the query | |
foreach (var x in lowNums) | |
{ | |
Console.WriteLine(x); | |
} | |
} | |
} | |
} | |
// Output = 8 6 7 2 0 5 4 1 3 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment