C# 클래스 ImageProcessor.Common.Extensions.EnumerableExtensions

Encapsulates a series of time saving extension methods to the T:System.Collections.IEnumerable interface.
파일 보기 프로젝트 열기: JimBobSquarePants/ImageProcessor

공개 메소드들

메소드 설명
SteppedRange ( int fromInclusive, bool>.Func toDelegate, int step ) : IEnumerable

Generates a sequence of integral numbers within a specified range.

SteppedRange ( int fromInclusive, int toExclusive, int step ) : IEnumerable

Generates a sequence of integral numbers within a specified range.

비공개 메소드들

메소드 설명
RangeIterator ( int fromInclusive, bool>.Func toDelegate, int step ) : IEnumerable

Generates a sequence of integral numbers within a specified range.

메소드 상세

SteppedRange() 공개 정적인 메소드

Generates a sequence of integral numbers within a specified range.
public static SteppedRange ( int fromInclusive, bool>.Func toDelegate, int step ) : IEnumerable
fromInclusive int /// The start index, inclusive. ///
toDelegate bool>.Func /// A method that has one parameter and returns a calculating the end index ///
step int /// The incremental step. ///
리턴 IEnumerable

SteppedRange() 공개 정적인 메소드

Generates a sequence of integral numbers within a specified range.
public static SteppedRange ( int fromInclusive, int toExclusive, int step ) : IEnumerable
fromInclusive int /// The start index, inclusive. ///
toExclusive int /// The end index, exclusive. ///
step int /// The incremental step. ///
리턴 IEnumerable