Use Conversion Operators ToArray : ToArray « LINQ « C# / C Sharp






Use Conversion Operators ToArray

 

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

public class MainClass {
    public static void Main() {
        double[] doubles = { 1.7, 2.3, 1.9, 4.1, 2.9 };
        var sortedDoubles =
            from d in doubles
            orderby d descending
            select d;
        var doublesArray = sortedDoubles.ToArray();

        Console.WriteLine("Every other double from highest to lowest:");
        for (int d = 0; d < doublesArray.Length; d += 2) {
            Console.WriteLine(doublesArray[d]);
        }
    }
}

 








Related examples in the same category

1.Calling the ToArray Operator
2.Convert query to array with ToArray
3.generates an array of double values by first using a query expression with orderby
4.To List: convert query result to list
5.Convert query result to an Array