public static UBinarySize? Sum(
this IEnumerable<UBinarySize?> source
)
<ExtensionAttribute>
Public Shared Function Sum (
source As IEnumerable(Of UBinarySize?)
) As UBinarySize?
public:
[ExtensionAttribute]
static Nullable<UBinarySize> Sum(
IEnumerable<Nullable<UBinarySize>>^ source
)
[<ExtensionAttribute>]
static member Sum :
source : IEnumerable<Nullable<UBinarySize>> -> Nullable<UBinarySize>
Items in source that are are excluded from the computation of the sum. This method returns zero if source contains no elements or all elements are .
ArgumentNullException | source is . |
OverflowException | The sum is larger than UBinarySizeMaxValue. |