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

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

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

Definition at line 7656 of file Enumerable.cs.

7657 {
7658 if (source == null)
7659 {
7660 ThrowHelper.ThrowArgumentNullException(ExceptionArgument.source);
7661 }
7662 if (predicate == null)
7663 {
7664 ThrowHelper.ThrowArgumentNullException(ExceptionArgument.predicate);
7665 }
7667 }

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