Enumerable.Average Method (IEnumerable<Nullable<Int64>>)
May 02, 2013
Computes the average of a sequence of nullable Int64 values.
Assembly: System.Core (in System.Core.dll)
Parameters
- source
- Type: System.Collections.Generic.IEnumerable<Nullable<Int64>>
A sequence of nullable Int64 values to calculate the average of.
Return Value
Type: System.Nullable<Double>The average of the sequence of values, or null if the source sequence is empty or contains only values that are null.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type IEnumerable<Nullable<Int64>>. When you use instance method syntax to call this method, omit the first parameter.| Exception | Condition |
|---|---|
| ArgumentNullException | source is null. |
| OverflowException | The sum of the elements in the sequence is larger than MaxValue. |