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

◆ InternalAggregate()

override? decimal System.Linq.Parallel.NullableDecimalSumAggregationOperator.InternalAggregate ( ref Exception singularExceptionToThrow)
inlineprotected

Definition at line 53 of file NullableDecimalSumAggregationOperator.cs.

54 {
55 using IEnumerator<decimal?> enumerator = GetEnumerator(ParallelMergeOptions.FullyBuffered, suppressOrderPreservation: true);
56 decimal value = 0.0m;
57 while (enumerator.MoveNext())
58 {
59 value += enumerator.Current.GetValueOrDefault();
60 }
61 return value;
62 }

References System.value.