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

◆ Average() [5/10]

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

Definition at line 1781 of file Queryable.cs.

1782 {
1783 if (source == null)
1784 {
1785 throw Error.ArgumentNull("source");
1786 }
1787 return source.Provider.Execute<float>(Expression.Call(null, CachedReflectionInfo.Average_Single_1, source.Expression));
1788 }
static MethodCallExpression Call(MethodInfo method)

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