SequenceEqual Operator with Take, Concat and Skip

image_pdfimage_print
   
 

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"};
        bool eq = presidents.SequenceEqual(presidents.Take(5).Concat(presidents.Skip(5)));
        Console.WriteLine(eq);
    }
}

    


This entry was posted in LINQ. Bookmark the permalink.