Take operator outputs the first x elements, discarding the rest
using System; using System.Collections.Generic; using System.Linq; public class MainClass { public static void Main() { int[] numbers = { 10, 9, 8, 7, 6 }; IEnumerable<int> firstThree = numbers.Take(3); // { 10, 9, 8 } } }
1. | Use Take | ||
2. | Take method | ||
3. | Take and SelectMany | ||
4. | Partitioning Operators: uses Take to generate a sequence of the first three elements of an integer array. | ||
5. | Nested Take |