Convert query result to list with ToList in CSharp
Description
The following code shows how to convert query result to list with ToList.
Example
using System;//from w w w. j av a 2s. c o m
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);
}
}
}
The code above generates the following result.