Enumerable.Average Method (IEnumerable<Nullable<Int64>>)
.NET Framework 4
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. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).| Exception | Condition |
|---|---|
| ArgumentNullException | source is null. |
| OverflowException | The sum of the elements in the sequence is larger than MaxValue. |
In Visual Basic query expression syntax, an Aggregate Into Average() clause translates to an invocation of Average.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.