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

◆ Average() [10/10]

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

Definition at line 1771 of file Queryable.cs.

1772 {
1773 if (source == null)
1774 {
1775 throw Error.ArgumentNull("source");
1776 }
1777 return source.Provider.Execute<double?>(Expression.Call(null, CachedReflectionInfo.Average_NullableInt64_1, source.Expression));
1778 }
static MethodCallExpression Call(MethodInfo method)

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