Query Reuse : select « LINQ « C# / C Sharp






Query Reuse

 

using System;
using System.Linq;

static class QueryReuse {
    static double Square(double n) {
        Console.WriteLine("Computing Square(" + n + ")...");
        return Math.Pow(n, 2);
    }

    public static void Main() {
        int[] numbers = { 1, 2, 3 };

        var query =
          from n in numbers
          select Square(n);

        foreach (var n in query)
            Console.WriteLine(n);

        for (int i = 0; i < numbers.Length; i++)
            numbers[i] = numbers[i] + 10;

        foreach (var n in query)
            Console.WriteLine(n);
    }
}

 








Related examples in the same category

1.Select array item by type
2.Use LINQ with Dictionary
3.Use LINQ to query characters in a string
4.Transformation: link two array.
5.Select with Anonymous Types: prints uppercase and lowercase versions of each string in an input array
6.Select with Anonymous Types: iterates over each element to print the element's name
7.Select with Anonymous Types: prints the name of every product in the product list along with the category of the product and its unit price
8.uses select to create a sequence of each product name.
9.Converting an Array of Strings to Integers
10.Converting an Array of Strings to Integers and Sorting It
11.Query with Intentional Exception Deferred Until Enumeration
12.Demonstrating the Query Results Changing Between Enumerations
13.Returning a List