Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ SkipWhile< TSource >() [2/2]

static IEnumerable< TSource > System.Linq.Enumerable.SkipWhile< TSource > ( this IEnumerable< TSource > source,
Func< TSource, int, bool > predicate )
inlinestatic

Definition at line 7687 of file Enumerable.cs.

7688 {
7689 if (source == null)
7690 {
7691 ThrowHelper.ThrowArgumentNullException(ExceptionArgument.source);
7692 }
7693 if (predicate == null)
7694 {
7695 ThrowHelper.ThrowArgumentNullException(ExceptionArgument.predicate);
7696 }
7698 }

References System.Linq.predicate, System.Linq.source, and System.Linq.ThrowHelper.ThrowArgumentNullException().