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

◆ Sum() [6/10]

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

Definition at line 1551 of file Queryable.cs.

1552 {
1553 if (source == null)
1554 {
1555 throw Error.ArgumentNull("source");
1556 }
1557 return source.Provider.Execute<float?>(Expression.Call(null, CachedReflectionInfo.Sum_NullableSingle_1, source.Expression));
1558 }
static MethodCallExpression Call(MethodInfo method)

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