mirror of
https://onedev.fprog.nl/AioNet
synced 2025-12-22 04:18:37 +01:00
17 lines
347 B
C#
17 lines
347 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
|
|||
|
|
namespace AioNet.Linq
|
|||
|
|
{
|
|||
|
|
public static class ExtendedLinq
|
|||
|
|
{
|
|||
|
|
public static IEnumerable<IEnumerable<T>> Combinations<T>(
|
|||
|
|
this IEnumerable<T> source,
|
|||
|
|
int subsequenceLength
|
|||
|
|
)
|
|||
|
|
{
|
|||
|
|
throw new NotImplementedException();
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|