Check out example codes for "sliding window algorithm in c#". It will help you in understanding the concepts better.
Code Example 1
var input = new[] { "a", "b", "c", "d", "e", "f" };
var result = input.Zip(input.Skip(1), (a, b) => Tuple.Create(a, b));
Learn ReactJs, React Native from akashmittal.com