To List: convert query result to list : ToArray « LINQ « C# / CSharp Tutorial






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

public class MainClass {
    public static void Main() {
        string[] words = { "ch", "a", "b" };
        var sortedWords =
            from w in words
            orderby w
            select w;
        var wordList = sortedWords.ToList();
        Console.WriteLine("The sorted word list:");
        foreach (var w in wordList) {
            Console.WriteLine(w);
        }
    }
}








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