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

◆ Average() [6/10]

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

Definition at line 1791 of file Queryable.cs.

1792 {
1793 if (source == null)
1794 {
1795 throw Error.ArgumentNull("source");
1796 }
1797 return source.Provider.Execute<float?>(Expression.Call(null, CachedReflectionInfo.Average_NullableSingle_1, source.Expression));
1798 }
static MethodCallExpression Call(MethodInfo method)

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