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

◆ Average() [4/10]

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

Definition at line 1811 of file Queryable.cs.

1812 {
1813 if (source == null)
1814 {
1815 throw Error.ArgumentNull("source");
1816 }
1817 return source.Provider.Execute<double?>(Expression.Call(null, CachedReflectionInfo.Average_NullableDouble_1, source.Expression));
1818 }
static MethodCallExpression Call(MethodInfo method)

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