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

◆ Average() [2/10]

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

Definition at line 1831 of file Queryable.cs.

1832 {
1833 if (source == null)
1834 {
1835 throw Error.ArgumentNull("source");
1836 }
1837 return source.Provider.Execute<decimal?>(Expression.Call(null, CachedReflectionInfo.Average_NullableDecimal_1, source.Expression));
1838 }
static MethodCallExpression Call(MethodInfo method)

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