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

◆ Average() [1/10]

static decimal System.Linq.Queryable.Average ( this IQueryable< decimal > source)
inlinestatic

Definition at line 1821 of file Queryable.cs.

1822 {
1823 if (source == null)
1824 {
1825 throw Error.ArgumentNull("source");
1826 }
1827 return source.Provider.Execute<decimal>(Expression.Call(null, CachedReflectionInfo.Average_Decimal_1, source.Expression));
1828 }
static MethodCallExpression Call(MethodInfo method)

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