Calling the ToList Operator : ToList « LINQ « C# / C Sharp






Calling the ToList Operator

 

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

public class MainClass {
    public static void Main() {
        string[] presidents = {"G", "H", "a", "H", "over", "Jack"};
        List<string> names = presidents.ToList();
        foreach (string name in names)
            Console.WriteLine(name);
    }
}

 








Related examples in the same category

1.Convert Query result to a List
2.Convert an ArrayList to an IEnumerable That Can Be Used with the Typical Standard Query Operators
3.calling ToList.