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

◆ Sum() [8/10]

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

Definition at line 1511 of file Queryable.cs.

1512 {
1513 if (source == null)
1514 {
1515 throw Error.ArgumentNull("source");
1516 }
1517 return source.Provider.Execute<int?>(Expression.Call(null, CachedReflectionInfo.Sum_NullableInt32_1, source.Expression));
1518 }
static MethodCallExpression Call(MethodInfo method)

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