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

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

static IQueryable< TSource > System.Linq.Queryable.SkipWhile< TSource > ( this IQueryable< TSource > source,
Expression< Func< TSource, int, bool > > predicate )
inlinestatic

Definition at line 477 of file Queryable.cs.

478 {
479 if (source == null)
480 {
481 throw Error.ArgumentNull("source");
482 }
483 if (predicate == null)
484 {
485 throw Error.ArgumentNull("predicate");
486 }
487 return source.Provider.CreateQuery<TSource>(Expression.Call(null, CachedReflectionInfo.SkipWhile_Index_TSource_2(typeof(TSource)), source.Expression, Expression.Quote(predicate)));
488 }
static MethodCallExpression Call(MethodInfo method)
static UnaryExpression Quote(Expression expression)

References System.Linq.Error.ArgumentNull(), System.Linq.Expressions.Expression< TDelegate >.Call(), System.Linq.predicate, System.Linq.Expressions.Expression< TDelegate >.Quote(), System.Linq.CachedReflectionInfo.SkipWhile_Index_TSource_2(), and System.Linq.source.