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






To List: convert query result to list

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

 








Related examples in the same category

1.Calling the ToArray Operator
2.Convert query to array with ToArray
3.Use Conversion Operators ToArray
4.generates an array of double values by first using a query expression with orderby
5.Convert query result to an Array