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

◆ Average() [9/10]

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

Definition at line 1761 of file Queryable.cs.

1762 {
1763 if (source == null)
1764 {
1765 throw Error.ArgumentNull("source");
1766 }
1767 return source.Provider.Execute<double>(Expression.Call(null, CachedReflectionInfo.Average_Int64_1, source.Expression));
1768 }
static MethodCallExpression Call(MethodInfo method)

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