M_CSharpx_EnumerableExtensions_ExpectingCountYieldingImpl__1 - adutton/commandline GitHub Wiki
Namespace: CSharpx
Assembly: CommandLine (in CommandLine.dll) Version: 0.0.0
C#
private static IEnumerable<TSource> ExpectingCountYieldingImpl<TSource>(
IEnumerable<TSource> source,
int count,
Func<int, int, Exception> errorSelector
)VB
Private Shared Function ExpectingCountYieldingImpl(Of TSource) (
source As IEnumerable(Of TSource),
count As Integer,
errorSelector As Func(Of Integer, Integer, Exception)
) As IEnumerable(Of TSource)C++
private:
generic<typename TSource>
static IEnumerable<TSource>^ ExpectingCountYieldingImpl(
IEnumerable<TSource>^ source,
int count,
Func<int, int, Exception^>^ errorSelector
)F#
private static member ExpectingCountYieldingImpl :
source : IEnumerable<'TSource> *
count : int *
errorSelector : Func<int, int, Exception> -> IEnumerable<'TSource>
- source
- Type: System.Collections.Generic.IEnumerable(TSource)
- count
- Type: System.Int32
- errorSelector
- Type: System.Func(Int32, Int32, Exception)
- TSource
Type: IEnumerable(TSource)