Generating an array of double values by first using a query expression with orderby : ToArray « LINQ « C# / CSharp Tutorial






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]);
        }
    }
}








22.21.ToArray
22.21.1.Calling the ToArray Operator
22.21.2.Convert query to array with ToArray
22.21.3.Use Conversion Operators ToArray
22.21.4.Generating an array of double values by first using a query expression with orderby
22.21.5.To List: convert query result to list
22.21.6.Convert query result to an Array
22.21.7.Convert query to array