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

◆ Average() [8/10]

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

Definition at line 1751 of file Queryable.cs.

1752 {
1753 if (source == null)
1754 {
1755 throw Error.ArgumentNull("source");
1756 }
1757 return source.Provider.Execute<double?>(Expression.Call(null, CachedReflectionInfo.Average_NullableInt32_1, source.Expression));
1758 }
static MethodCallExpression Call(MethodInfo method)

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