using System; using System.Collections.Generic; namespace AioNet.Linq { public static class ExtendedLinq { public static IEnumerable> Combinations( this IEnumerable source, int subsequenceLength ) { throw new NotImplementedException(); } } }