69
1
using System;
2
using System.Collections.Generic;
3
using System.Linq;
4
5
public class Program
6
{
7
public static void Main()
8
{
9
var numbers=new[]{1,2,3,4,5};
10
var eg = numbers.Slice(-3,-1);
11
foreach (var i in eg)
12
{
13
Console.Write("{0}, ", i);
14
}
15
Console.WriteLine(); // Output: 3, 4,
16
17
}
18
}
19
20
public static class Extensions
21
{
22
/// <summary>
23
/// Slices the specified collection like Python does
24
/// </summary>
Cached Result
Enum value= White