Enumerable.Average メソッド
定義
数値のシーケンスの平均を計算します。Computes the average of a sequence of numeric values.
オーバーロード
Average(IEnumerable<Single>) |
Single 値のシーケンスの平均値を計算します。Computes the average of a sequence of Single values. |
Average(IEnumerable<Nullable<Single>>) |
Null 許容型の Single 値のシーケンスの平均を計算します。Computes the average of a sequence of nullable Single values. |
Average(IEnumerable<Nullable<Int64>>) |
Null 許容型の Int64 値のシーケンスの平均を計算します。Computes the average of a sequence of nullable Int64 values. |
Average(IEnumerable<Nullable<Int32>>) |
Null 許容型の Int32 値のシーケンスの平均を計算します。Computes the average of a sequence of nullable Int32 values. |
Average(IEnumerable<Nullable<Double>>) |
Null 許容型の Double 値のシーケンスの平均を計算します。Computes the average of a sequence of nullable Double values. |
Average(IEnumerable<Int64>) |
Int64 値のシーケンスの平均値を計算します。Computes the average of a sequence of Int64 values. |
Average(IEnumerable<Int32>) |
Int32 値のシーケンスの平均値を計算します。Computes the average of a sequence of Int32 values. |
Average(IEnumerable<Double>) |
Double 値のシーケンスの平均値を計算します。Computes the average of a sequence of Double values. |
Average(IEnumerable<Decimal>) |
Decimal 値のシーケンスの平均値を計算します。Computes the average of a sequence of Decimal values. |
Average(IEnumerable<Nullable<Decimal>>) |
Null 許容型の Decimal 値のシーケンスの平均を計算します。Computes the average of a sequence of nullable Decimal values. |
Average<TSource>(IEnumerable<TSource>, Func<TSource,Nullable<Int32>>) |
入力シーケンスの各要素に対して変換関数を呼び出して取得する null 許容の Int32 値のシーケンスの平均値を計算します。Computes the average of a sequence of nullable Int32 values that are obtained by invoking a transform function on each element of the input sequence. |
Average<TSource>(IEnumerable<TSource>, Func<TSource,Single>) |
入力シーケンスの各要素に対して変換関数を呼び出して取得する Single 値のシーケンスの平均値を計算します。Computes the average of a sequence of Single values that are obtained by invoking a transform function on each element of the input sequence. |
Average<TSource>(IEnumerable<TSource>, Func<TSource,Nullable<Single>>) |
入力シーケンスの各要素に対して変換関数を呼び出して取得する null 許容の Single 値のシーケンスの平均値を計算します。Computes the average of a sequence of nullable Single values that are obtained by invoking a transform function on each element of the input sequence. |
Average<TSource>(IEnumerable<TSource>, Func<TSource,Nullable<Int64>>) |
入力シーケンスの各要素に対して変換関数を呼び出して取得する null 許容の Int64 値のシーケンスの平均値を計算します。Computes the average of a sequence of nullable Int64 values that are obtained by invoking a transform function on each element of the input sequence. |
Average<TSource>(IEnumerable<TSource>, Func<TSource,Nullable<Double>>) |
入力シーケンスの各要素に対して変換関数を呼び出して取得する null 許容の Double 値のシーケンスの平均値を計算します。Computes the average of a sequence of nullable Double values that are obtained by invoking a transform function on each element of the input sequence. |
Average<TSource>(IEnumerable<TSource>, Func<TSource,Nullable<Decimal>>) |
入力シーケンスの各要素に対して変換関数を呼び出して取得する null 許容の Decimal 値のシーケンスの平均値を計算します。Computes the average of a sequence of nullable Decimal values that are obtained by invoking a transform function on each element of the input sequence. |
Average<TSource>(IEnumerable<TSource>, Func<TSource,Int64>) |
入力シーケンスの各要素に対して変換関数を呼び出して取得する Int64 値のシーケンスの平均値を計算します。Computes the average of a sequence of Int64 values that are obtained by invoking a transform function on each element of the input sequence. |
Average<TSource>(IEnumerable<TSource>, Func<TSource,Int32>) |
入力シーケンスの各要素に対して変換関数を呼び出して取得する Int32 値のシーケンスの平均値を計算します。Computes the average of a sequence of Int32 values that are obtained by invoking a transform function on each element of the input sequence. |
Average<TSource>(IEnumerable<TSource>, Func<TSource,Double>) |
入力シーケンスの各要素に対して変換関数を呼び出して取得する Double 値のシーケンスの平均値を計算します。Computes the average of a sequence of Double values that are obtained by invoking a transform function on each element of the input sequence. |
Average<TSource>(IEnumerable<TSource>, Func<TSource,Decimal>) |
入力シーケンスの各要素に対して変換関数を呼び出して取得する Decimal 値のシーケンスの平均値を計算します。Computes the average of a sequence of Decimal values that are obtained by invoking a transform function on each element of the input sequence. |
Average(IEnumerable<Single>)
public:
[System::Runtime::CompilerServices::Extension]
static float Average(System::Collections::Generic::IEnumerable<float> ^ source);
public static float Average (this System.Collections.Generic.IEnumerable<float> source);
static member Average : seq<single> -> single
<Extension()>
Public Function Average (source As IEnumerable(Of Single)) As Single
パラメーター
- source
- IEnumerable<Single>
平均値計算の対象となる Single 値のシーケンス。A sequence of Single values to calculate the average of.
戻り値
値のシーケンスの平均値。The average of the sequence of values.
例外
source
が null
です。source
is null
.
source
に要素が含まれていません。source
contains no elements.
例
次のコード例は、を使用して平均を計算する方法を示して Average(IEnumerable<Int32>) います。The following code example demonstrates how to use Average(IEnumerable<Int32>) to calculate an average.
注意
このコード例で使用するオーバーロードされたメソッドのオーバーロードは、このトピックで説明する特定のオーバーロードとは異なります。This code example uses an overload of this overloaded method that is different from the specific overload that this topic describes. コード例をこのトピックに適用するには、ソース シーケンスの要素を適切な数値型の要素に置き換えます。To extend the example to this topic, substitute the elements of the source sequence with elements of the appropriate numerical type.
List<int> grades = new List<int> { 78, 92, 100, 37, 81 };
double average = grades.Average();
Console.WriteLine("The average grade is {0}.", average);
// This code produces the following output:
//
// The average grade is 77.6.
' Create a list of integers.
Dim grades As New List(Of Integer)(New Integer() {78, 92, 100, 37, 81})
' Determine the average value in the list.
Dim avg As Double = grades.Average()
' Display the output.
Console.WriteLine($"The average grade is {avg}")
' This code produces the following output:
'
' The average grade is 77.6
注釈
Visual Basic のクエリ式の構文では、 Aggregate Into Average()
句はの呼び出しに変換 Average します。In Visual Basic query expression syntax, an Aggregate Into Average()
clause translates to an invocation of Average.
こちらもご覧ください
適用対象
Average(IEnumerable<Nullable<Single>>)
public:
[System::Runtime::CompilerServices::Extension]
static Nullable<float> Average(System::Collections::Generic::IEnumerable<Nullable<float>> ^ source);
public static float? Average (this System.Collections.Generic.IEnumerable<Nullable<float>> source);
static member Average : seq<Nullable<single>> -> Nullable<single>
<Extension()>
Public Function Average (source As IEnumerable(Of Nullable(Of Single))) As Nullable(Of Single)
パラメーター
- source
- IEnumerable<Nullable<Single>>
平均を計算する Null 許容型の Single 値のシーケンス。A sequence of nullable Single values to calculate the average of.
戻り値
値のシーケンスの平均値、または、ソース シーケンスが空または null
である値のみを含む場合は null
。The average of the sequence of values, or null
if the source sequence is empty or contains only values that are null
.
例外
source
が null
です。source
is null
.
例
次のコード例は、を使用して平均を計算する方法を示して Average(IEnumerable<Nullable<Int64>>) います。The following code example demonstrates how to use Average(IEnumerable<Nullable<Int64>>) to calculate an average.
注意
このコード例で使用するオーバーロードされたメソッドのオーバーロードは、このトピックで説明する特定のオーバーロードとは異なります。This code example uses an overload of this overloaded method that is different from the specific overload that this topic describes. コード例をこのトピックに適用するには、ソース シーケンスの要素を適切な数値型の要素に置き換えます。To extend the example to this topic, substitute the elements of the source sequence with elements of the appropriate numerical type.
long?[] longs = { null, 10007L, 37L, 399846234235L };
double? average = longs.Average();
Console.WriteLine("The average is {0}.", average);
// This code produces the following output:
//
// The average is 133282081426.333.
' Create an array of nullable long values.
Dim longs() As Nullable(Of Long) = {Nothing, 10007L, 37L, 399846234235L}
' Determine the average value in the array.
Dim avg As Nullable(Of Double) = longs.Average()
' Display the output.
Console.WriteLine($"The average is {avg}")
' This code produces the following output:
'
' The average is 133282081426.333
注釈
Visual Basic のクエリ式の構文では、 Aggregate Into Average()
句はの呼び出しに変換 Average します。In Visual Basic query expression syntax, an Aggregate Into Average()
clause translates to an invocation of Average.
こちらもご覧ください
適用対象
Average(IEnumerable<Nullable<Int64>>)
public:
[System::Runtime::CompilerServices::Extension]
static Nullable<double> Average(System::Collections::Generic::IEnumerable<Nullable<long>> ^ source);
public static double? Average (this System.Collections.Generic.IEnumerable<Nullable<long>> source);
static member Average : seq<Nullable<int64>> -> Nullable<double>
<Extension()>
Public Function Average (source As IEnumerable(Of Nullable(Of Long))) As Nullable(Of Double)
パラメーター
- source
- IEnumerable<Nullable<Int64>>
平均を計算する Null 許容型の Int64 値のシーケンス。A sequence of nullable Int64 values to calculate the average of.
戻り値
値のシーケンスの平均値、または、ソース シーケンスが空または null
である値のみを含む場合は null
。The average of the sequence of values, or null
if the source sequence is empty or contains only values that are null
.
例外
source
が null
です。source
is null
.
例
次のコード例は、を使用して平均を計算する方法を示して Average(IEnumerable<Nullable<Int64>>) います。The following code example demonstrates how to use Average(IEnumerable<Nullable<Int64>>) to calculate an average.
long?[] longs = { null, 10007L, 37L, 399846234235L };
double? average = longs.Average();
Console.WriteLine("The average is {0}.", average);
// This code produces the following output:
//
// The average is 133282081426.333.
' Create an array of nullable long values.
Dim longs() As Nullable(Of Long) = {Nothing, 10007L, 37L, 399846234235L}
' Determine the average value in the array.
Dim avg As Nullable(Of Double) = longs.Average()
' Display the output.
Console.WriteLine($"The average is {avg}")
' This code produces the following output:
'
' The average is 133282081426.333
注釈
Visual Basic のクエリ式の構文では、 Aggregate Into Average()
句はの呼び出しに変換 Average します。In Visual Basic query expression syntax, an Aggregate Into Average()
clause translates to an invocation of Average.
こちらもご覧ください
適用対象
Average(IEnumerable<Nullable<Int32>>)
public:
[System::Runtime::CompilerServices::Extension]
static Nullable<double> Average(System::Collections::Generic::IEnumerable<Nullable<int>> ^ source);
public static double? Average (this System.Collections.Generic.IEnumerable<Nullable<int>> source);
static member Average : seq<Nullable<int>> -> Nullable<double>
<Extension()>
Public Function Average (source As IEnumerable(Of Nullable(Of Integer))) As Nullable(Of Double)
パラメーター
- source
- IEnumerable<Nullable<Int32>>
平均を計算する Null 許容型の Int32 値のシーケンス。A sequence of nullable Int32 values to calculate the average of.
戻り値
値のシーケンスの平均値、または、ソース シーケンスが空または null
である値のみを含む場合は null
。The average of the sequence of values, or null
if the source sequence is empty or contains only values that are null
.
例外
source
が null
です。source
is null
.
例
次のコード例は、を使用して平均を計算する方法を示して Average(IEnumerable<Nullable<Int64>>) います。The following code example demonstrates how to use Average(IEnumerable<Nullable<Int64>>) to calculate an average.
注意
このコード例で使用するオーバーロードされたメソッドのオーバーロードは、このトピックで説明する特定のオーバーロードとは異なります。This code example uses an overload of this overloaded method that is different from the specific overload that this topic describes. コード例をこのトピックに適用するには、ソース シーケンスの要素を適切な数値型の要素に置き換えます。To extend the example to this topic, substitute the elements of the source sequence with elements of the appropriate numerical type.
long?[] longs = { null, 10007L, 37L, 399846234235L };
double? average = longs.Average();
Console.WriteLine("The average is {0}.", average);
// This code produces the following output:
//
// The average is 133282081426.333.
' Create an array of nullable long values.
Dim longs() As Nullable(Of Long) = {Nothing, 10007L, 37L, 399846234235L}
' Determine the average value in the array.
Dim avg As Nullable(Of Double) = longs.Average()
' Display the output.
Console.WriteLine($"The average is {avg}")
' This code produces the following output:
'
' The average is 133282081426.333
注釈
Visual Basic のクエリ式の構文では、 Aggregate Into Average()
句はの呼び出しに変換 Average します。In Visual Basic query expression syntax, an Aggregate Into Average()
clause translates to an invocation of Average.
こちらもご覧ください
適用対象
Average(IEnumerable<Nullable<Double>>)
public:
[System::Runtime::CompilerServices::Extension]
static Nullable<double> Average(System::Collections::Generic::IEnumerable<Nullable<double>> ^ source);
public static double? Average (this System.Collections.Generic.IEnumerable<Nullable<double>> source);
static member Average : seq<Nullable<double>> -> Nullable<double>
<Extension()>
Public Function Average (source As IEnumerable(Of Nullable(Of Double))) As Nullable(Of Double)
パラメーター
- source
- IEnumerable<Nullable<Double>>
平均を計算する Null 許容型の Double 値のシーケンス。A sequence of nullable Double values to calculate the average of.
戻り値
値のシーケンスの平均値、または、ソース シーケンスが空または null
である値のみを含む場合は null
。The average of the sequence of values, or null
if the source sequence is empty or contains only values that are null
.
例外
source
が null
です。source
is null
.
例
次のコード例は、を使用して平均を計算する方法を示して Average(IEnumerable<Nullable<Int64>>) います。The following code example demonstrates how to use Average(IEnumerable<Nullable<Int64>>) to calculate an average.
注意
このコード例で使用するオーバーロードされたメソッドのオーバーロードは、このトピックで説明する特定のオーバーロードとは異なります。This code example uses an overload of this overloaded method that is different from the specific overload that this topic describes. コード例をこのトピックに適用するには、ソース シーケンスの要素を適切な数値型の要素に置き換えます。To extend the example to this topic, substitute the elements of the source sequence with elements of the appropriate numerical type.
long?[] longs = { null, 10007L, 37L, 399846234235L };
double? average = longs.Average();
Console.WriteLine("The average is {0}.", average);
// This code produces the following output:
//
// The average is 133282081426.333.
' Create an array of nullable long values.
Dim longs() As Nullable(Of Long) = {Nothing, 10007L, 37L, 399846234235L}
' Determine the average value in the array.
Dim avg As Nullable(Of Double) = longs.Average()
' Display the output.
Console.WriteLine($"The average is {avg}")
' This code produces the following output:
'
' The average is 133282081426.333
注釈
要素の合計がを表すには大きすぎる場合 Double 、このメソッドは正または負の無限大を返します。If the sum of the elements is too large to represent as a Double, this method returns positive or negative infinity.
Visual Basic のクエリ式の構文では、 Aggregate Into Average()
句はの呼び出しに変換 Average します。In Visual Basic query expression syntax, an Aggregate Into Average()
clause translates to an invocation of Average.
こちらもご覧ください
適用対象
Average(IEnumerable<Int64>)
public:
[System::Runtime::CompilerServices::Extension]
static double Average(System::Collections::Generic::IEnumerable<long> ^ source);
public static double Average (this System.Collections.Generic.IEnumerable<long> source);
static member Average : seq<int64> -> double
<Extension()>
Public Function Average (source As IEnumerable(Of Long)) As Double
パラメーター
- source
- IEnumerable<Int64>
平均値計算の対象となる Int64 値のシーケンス。A sequence of Int64 values to calculate the average of.
戻り値
値のシーケンスの平均値。The average of the sequence of values.
例外
source
が null
です。source
is null
.
source
に要素が含まれていません。source
contains no elements.
例
次のコード例は、を使用して平均を計算する方法を示して Average(IEnumerable<Int32>) います。The following code example demonstrates how to use Average(IEnumerable<Int32>) to calculate an average.
注意
このコード例で使用するオーバーロードされたメソッドのオーバーロードは、このトピックで説明する特定のオーバーロードとは異なります。This code example uses an overload of this overloaded method that is different from the specific overload that this topic describes. コード例をこのトピックに適用するには、ソース シーケンスの要素を適切な数値型の要素に置き換えます。To extend the example to this topic, substitute the elements of the source sequence with elements of the appropriate numerical type.
List<int> grades = new List<int> { 78, 92, 100, 37, 81 };
double average = grades.Average();
Console.WriteLine("The average grade is {0}.", average);
// This code produces the following output:
//
// The average grade is 77.6.
' Create a list of integers.
Dim grades As New List(Of Integer)(New Integer() {78, 92, 100, 37, 81})
' Determine the average value in the list.
Dim avg As Double = grades.Average()
' Display the output.
Console.WriteLine($"The average grade is {avg}")
' This code produces the following output:
'
' The average grade is 77.6
注釈
Visual Basic のクエリ式の構文では、 Aggregate Into Average()
句はの呼び出しに変換 Average します。In Visual Basic query expression syntax, an Aggregate Into Average()
clause translates to an invocation of Average.
こちらもご覧ください
適用対象
Average(IEnumerable<Int32>)
public:
[System::Runtime::CompilerServices::Extension]
static double Average(System::Collections::Generic::IEnumerable<int> ^ source);
public static double Average (this System.Collections.Generic.IEnumerable<int> source);
static member Average : seq<int> -> double
<Extension()>
Public Function Average (source As IEnumerable(Of Integer)) As Double
パラメーター
- source
- IEnumerable<Int32>
平均値計算の対象となる Int32 値のシーケンス。A sequence of Int32 values to calculate the average of.
戻り値
値のシーケンスの平均値。The average of the sequence of values.
例外
source
が null
です。source
is null
.
source
に要素が含まれていません。source
contains no elements.
例
次のコード例は、を使用して平均を計算する方法を示して Average(IEnumerable<Int32>) います。The following code example demonstrates how to use Average(IEnumerable<Int32>) to calculate an average.
List<int> grades = new List<int> { 78, 92, 100, 37, 81 };
double average = grades.Average();
Console.WriteLine("The average grade is {0}.", average);
// This code produces the following output:
//
// The average grade is 77.6.
' Create a list of integers.
Dim grades As New List(Of Integer)(New Integer() {78, 92, 100, 37, 81})
' Determine the average value in the list.
Dim avg As Double = grades.Average()
' Display the output.
Console.WriteLine($"The average grade is {avg}")
' This code produces the following output:
'
' The average grade is 77.6
注釈
Visual Basic のクエリ式の構文では、 Aggregate Into Average()
句はの呼び出しに変換 Average します。In Visual Basic query expression syntax, an Aggregate Into Average()
clause translates to an invocation of Average.
こちらもご覧ください
適用対象
Average(IEnumerable<Double>)
public:
[System::Runtime::CompilerServices::Extension]
static double Average(System::Collections::Generic::IEnumerable<double> ^ source);
public static double Average (this System.Collections.Generic.IEnumerable<double> source);
static member Average : seq<double> -> double
<Extension()>
Public Function Average (source As IEnumerable(Of Double)) As Double
パラメーター
- source
- IEnumerable<Double>
平均値計算の対象となる Double 値のシーケンス。A sequence of Double values to calculate the average of.
戻り値
値のシーケンスの平均値。The average of the sequence of values.
例外
source
が null
です。source
is null
.
source
に要素が含まれていません。source
contains no elements.
例
次のコード例は、を使用して平均を計算する方法を示して Average(IEnumerable<Int32>) います。The following code example demonstrates how to use Average(IEnumerable<Int32>) to calculate an average.
注意
このコード例で使用するオーバーロードされたメソッドのオーバーロードは、このトピックで説明する特定のオーバーロードとは異なります。This code example uses an overload of this overloaded method that is different from the specific overload that this topic describes. コード例をこのトピックに適用するには、ソース シーケンスの要素を適切な数値型の要素に置き換えます。To extend the example to this topic, substitute the elements of the source sequence with elements of the appropriate numerical type.
List<int> grades = new List<int> { 78, 92, 100, 37, 81 };
double average = grades.Average();
Console.WriteLine("The average grade is {0}.", average);
// This code produces the following output:
//
// The average grade is 77.6.
' Create a list of integers.
Dim grades As New List(Of Integer)(New Integer() {78, 92, 100, 37, 81})
' Determine the average value in the list.
Dim avg As Double = grades.Average()
' Display the output.
Console.WriteLine($"The average grade is {avg}")
' This code produces the following output:
'
' The average grade is 77.6
注釈
要素の合計がを表すには大きすぎる場合 Double 、このメソッドは正または負の無限大を返します。If the sum of the elements is too large to represent as a Double, this method returns positive or negative infinity.
Visual Basic のクエリ式の構文では、 Aggregate Into Average()
句はの呼び出しに変換 Average します。In Visual Basic query expression syntax, an Aggregate Into Average()
clause translates to an invocation of Average.
こちらもご覧ください
適用対象
Average(IEnumerable<Decimal>)
public:
[System::Runtime::CompilerServices::Extension]
static System::Decimal Average(System::Collections::Generic::IEnumerable<System::Decimal> ^ source);
public static decimal Average (this System.Collections.Generic.IEnumerable<decimal> source);
static member Average : seq<decimal> -> decimal
<Extension()>
Public Function Average (source As IEnumerable(Of Decimal)) As Decimal
パラメーター
- source
- IEnumerable<Decimal>
平均値計算の対象となる Decimal 値のシーケンス。A sequence of Decimal values to calculate the average of.
戻り値
値のシーケンスの平均値。The average of the sequence of values.
例外
source
が null
です。source
is null
.
source
に要素が含まれていません。source
contains no elements.
例
次のコード例は、を使用し Average(IEnumerable<Int32>) て値のシーケンスの平均を計算する方法を示しています。The following code example demonstrates how to use Average(IEnumerable<Int32>) to calculate the average of a sequence of values.
注意
このコード例で使用するオーバーロードされたメソッドのオーバーロードは、このトピックで説明する特定のオーバーロードとは異なります。This code example uses an overload of this overloaded method that is different from the specific overload that this topic describes. コード例をこのトピックに適用するには、ソース シーケンスの要素を適切な数値型の要素に置き換えます。To extend the example to this topic, substitute the elements of the source sequence with elements of the appropriate numerical type.
List<int> grades = new List<int> { 78, 92, 100, 37, 81 };
double average = grades.Average();
Console.WriteLine("The average grade is {0}.", average);
// This code produces the following output:
//
// The average grade is 77.6.
' Create a list of integers.
Dim grades As New List(Of Integer)(New Integer() {78, 92, 100, 37, 81})
' Determine the average value in the list.
Dim avg As Double = grades.Average()
' Display the output.
Console.WriteLine($"The average grade is {avg}")
' This code produces the following output:
'
' The average grade is 77.6
注釈
Visual Basic のクエリ式の構文では、 Aggregate Into Average()
句はの呼び出しに変換 Average します。In Visual Basic query expression syntax, an Aggregate Into Average()
clause translates to an invocation of Average.
こちらもご覧ください
適用対象
Average(IEnumerable<Nullable<Decimal>>)
public:
[System::Runtime::CompilerServices::Extension]
static Nullable<System::Decimal> Average(System::Collections::Generic::IEnumerable<Nullable<System::Decimal>> ^ source);
public static decimal? Average (this System.Collections.Generic.IEnumerable<Nullable<decimal>> source);
static member Average : seq<Nullable<decimal>> -> Nullable<decimal>
<Extension()>
Public Function Average (source As IEnumerable(Of Nullable(Of Decimal))) As Nullable(Of Decimal)
パラメーター
- source
- IEnumerable<Nullable<Decimal>>
平均を計算する Null 許容型の Decimal 値のシーケンス。A sequence of nullable Decimal values to calculate the average of.
戻り値
値のシーケンスの平均値、または、ソース シーケンスが空または null
である値のみを含む場合は null
。The average of the sequence of values, or null
if the source sequence is empty or contains only values that are null
.
例外
source
が null
です。source
is null
.
例
次のコード例は、を使用して平均を計算する方法を示して Average(IEnumerable<Nullable<Int64>>) います。The following code example demonstrates how to use Average(IEnumerable<Nullable<Int64>>) to calculate an average.
注意
このコード例で使用するオーバーロードされたメソッドのオーバーロードは、このトピックで説明する特定のオーバーロードとは異なります。This code example uses an overload of this overloaded method that is different from the specific overload that this topic describes. コード例をこのトピックに適用するには、ソース シーケンスの要素を適切な数値型の要素に置き換えます。To extend the example to this topic, substitute the elements of the source sequence with elements of the appropriate numerical type.
long?[] longs = { null, 10007L, 37L, 399846234235L };
double? average = longs.Average();
Console.WriteLine("The average is {0}.", average);
// This code produces the following output:
//
// The average is 133282081426.333.
' Create an array of nullable long values.
Dim longs() As Nullable(Of Long) = {Nothing, 10007L, 37L, 399846234235L}
' Determine the average value in the array.
Dim avg As Nullable(Of Double) = longs.Average()
' Display the output.
Console.WriteLine($"The average is {avg}")
' This code produces the following output:
'
' The average is 133282081426.333
注釈
Visual Basic のクエリ式の構文では、 Aggregate Into Average()
句はの呼び出しに変換 Average します。In Visual Basic query expression syntax, an Aggregate Into Average()
clause translates to an invocation of Average.
こちらもご覧ください
適用対象
Average<TSource>(IEnumerable<TSource>, Func<TSource,Nullable<Int32>>)
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static Nullable<double> Average(System::Collections::Generic::IEnumerable<TSource> ^ source, Func<TSource, Nullable<int>> ^ selector);
public static double? Average<TSource> (this System.Collections.Generic.IEnumerable<TSource> source, Func<TSource,Nullable<int>> selector);
static member Average : seq<'Source> * Func<'Source, Nullable<int>> -> Nullable<double>
<Extension()>
Public Function Average(Of TSource) (source As IEnumerable(Of TSource), selector As Func(Of TSource, Nullable(Of Integer))) As Nullable(Of Double)
型パラメーター
- TSource
source
の要素の型。The type of the elements of source
.
パラメーター
- source
- IEnumerable<TSource>
平均値計算の対象となる値のシーケンス。A sequence of values to calculate the average of.
戻り値
値のシーケンスの平均値、または、ソース シーケンスが空または null
である値のみを含む場合は null
。The average of the sequence of values, or null
if the source sequence is empty or contains only values that are null
.
例外
source
または selector
が null
です。source
or selector
is null
.
例
次のコード例は、を使用して平均を計算する方法を示して Average<TSource>(IEnumerable<TSource>, Func<TSource,Int32>) います。The following code example demonstrates how to use Average<TSource>(IEnumerable<TSource>, Func<TSource,Int32>) to calculate an average.
注意
このコード例で使用するオーバーロードされたメソッドのオーバーロードは、このトピックで説明する特定のオーバーロードとは異なります。This code example uses an overload of this overloaded method that is different from the specific overload that this topic describes. コード例をこのトピックに適用するには、selector
関数の本体を変更します。To extend the example to this topic, change the body of the selector
function.
string[] fruits = { "apple", "banana", "mango", "orange", "passionfruit", "grape" };
double average = fruits.Average(s => s.Length);
Console.WriteLine("The average string length is {0}.", average);
// This code produces the following output:
//
// The average string length is 6.5.
' Create an array of strings.
Dim fruits() As String =
{"apple", "banana", "mango", "orange", "passionfruit", "grape"}
' Determine the average length of the strings in the array.
Dim avg As Double = fruits.Average(Function(s) s.Length)
' Display the output.
Console.WriteLine($"The average string length is {avg}")
' This code produces the following output:
'
' The average string length is 6.5
注釈
Visual Basic のクエリ式の構文では、 Aggregate Into Average()
句はの呼び出しに変換 Average します。In Visual Basic query expression syntax, an Aggregate Into Average()
clause translates to an invocation of Average.
こちらもご覧ください
適用対象
Average<TSource>(IEnumerable<TSource>, Func<TSource,Single>)
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static float Average(System::Collections::Generic::IEnumerable<TSource> ^ source, Func<TSource, float> ^ selector);
public static float Average<TSource> (this System.Collections.Generic.IEnumerable<TSource> source, Func<TSource,float> selector);
static member Average : seq<'Source> * Func<'Source, single> -> single
<Extension()>
Public Function Average(Of TSource) (source As IEnumerable(Of TSource), selector As Func(Of TSource, Single)) As Single
型パラメーター
- TSource
source
の要素の型。The type of the elements of source
.
パラメーター
- source
- IEnumerable<TSource>
平均値計算の対象となる値のシーケンス。A sequence of values to calculate the average of.
戻り値
値のシーケンスの平均値。The average of the sequence of values.
例外
source
または selector
が null
です。source
or selector
is null
.
source
に要素が含まれていません。source
contains no elements.
例
次のコード例は、を使用して平均を計算する方法を示して Average<TSource>(IEnumerable<TSource>, Func<TSource,Int32>) います。The following code example demonstrates how to use Average<TSource>(IEnumerable<TSource>, Func<TSource,Int32>) to calculate an average.
注意
このコード例で使用するオーバーロードされたメソッドのオーバーロードは、このトピックで説明する特定のオーバーロードとは異なります。This code example uses an overload of this overloaded method that is different from the specific overload that this topic describes. コード例をこのトピックに適用するには、selector
関数の本体を変更します。To extend the example to this topic, change the body of the selector
function.
string[] fruits = { "apple", "banana", "mango", "orange", "passionfruit", "grape" };
double average = fruits.Average(s => s.Length);
Console.WriteLine("The average string length is {0}.", average);
// This code produces the following output:
//
// The average string length is 6.5.
' Create an array of strings.
Dim fruits() As String =
{"apple", "banana", "mango", "orange", "passionfruit", "grape"}
' Determine the average length of the strings in the array.
Dim avg As Double = fruits.Average(Function(s) s.Length)
' Display the output.
Console.WriteLine($"The average string length is {avg}")
' This code produces the following output:
'
' The average string length is 6.5
注釈
Visual Basic のクエリ式の構文では、 Aggregate Into Average()
句はの呼び出しに変換 Average します。In Visual Basic query expression syntax, an Aggregate Into Average()
clause translates to an invocation of Average.
こちらもご覧ください
適用対象
Average<TSource>(IEnumerable<TSource>, Func<TSource,Nullable<Single>>)
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static Nullable<float> Average(System::Collections::Generic::IEnumerable<TSource> ^ source, Func<TSource, Nullable<float>> ^ selector);
public static float? Average<TSource> (this System.Collections.Generic.IEnumerable<TSource> source, Func<TSource,Nullable<float>> selector);
static member Average : seq<'Source> * Func<'Source, Nullable<single>> -> Nullable<single>
<Extension()>
Public Function Average(Of TSource) (source As IEnumerable(Of TSource), selector As Func(Of TSource, Nullable(Of Single))) As Nullable(Of Single)
型パラメーター
- TSource
source
の要素の型。The type of the elements of source
.
パラメーター
- source
- IEnumerable<TSource>
平均値計算の対象となる値のシーケンス。A sequence of values to calculate the average of.
戻り値
値のシーケンスの平均値、または、ソース シーケンスが空または null
である値のみを含む場合は null
。The average of the sequence of values, or null
if the source sequence is empty or contains only values that are null
.
例外
source
または selector
が null
です。source
or selector
is null
.
例
次のコード例は、を使用して平均を計算する方法を示して Average<TSource>(IEnumerable<TSource>, Func<TSource,Int32>) います。The following code example demonstrates how to use Average<TSource>(IEnumerable<TSource>, Func<TSource,Int32>) to calculate an average.
注意
このコード例で使用するオーバーロードされたメソッドのオーバーロードは、このトピックで説明する特定のオーバーロードとは異なります。This code example uses an overload of this overloaded method that is different from the specific overload that this topic describes. コード例をこのトピックに適用するには、selector
関数の本体を変更します。To extend the example to this topic, change the body of the selector
function.
string[] fruits = { "apple", "banana", "mango", "orange", "passionfruit", "grape" };
double average = fruits.Average(s => s.Length);
Console.WriteLine("The average string length is {0}.", average);
// This code produces the following output:
//
// The average string length is 6.5.
' Create an array of strings.
Dim fruits() As String =
{"apple", "banana", "mango", "orange", "passionfruit", "grape"}
' Determine the average length of the strings in the array.
Dim avg As Double = fruits.Average(Function(s) s.Length)
' Display the output.
Console.WriteLine($"The average string length is {avg}")
' This code produces the following output:
'
' The average string length is 6.5
注釈
Visual Basic のクエリ式の構文では、 Aggregate Into Average()
句はの呼び出しに変換 Average します。In Visual Basic query expression syntax, an Aggregate Into Average()
clause translates to an invocation of Average.
こちらもご覧ください
適用対象
Average<TSource>(IEnumerable<TSource>, Func<TSource,Nullable<Int64>>)
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static Nullable<double> Average(System::Collections::Generic::IEnumerable<TSource> ^ source, Func<TSource, Nullable<long>> ^ selector);
public static double? Average<TSource> (this System.Collections.Generic.IEnumerable<TSource> source, Func<TSource,Nullable<long>> selector);
static member Average : seq<'Source> * Func<'Source, Nullable<int64>> -> Nullable<double>
<Extension()>
Public Function Average(Of TSource) (source As IEnumerable(Of TSource), selector As Func(Of TSource, Nullable(Of Long))) As Nullable(Of Double)
型パラメーター
- TSource
source
の要素の型。The type of the elements of source
.
パラメーター
- source
- IEnumerable<TSource>
平均値計算の対象となる値のシーケンス。A sequence of values to calculate the average of.
戻り値
値のシーケンスの平均値、または、ソース シーケンスが空または null
である値のみを含む場合は null
。The average of the sequence of values, or null
if the source sequence is empty or contains only values that are null
.
例
次のコード例は、を使用して平均を計算する方法を示して Average<TSource>(IEnumerable<TSource>, Func<TSource,Int64>) います。The following code example demonstrates how to use Average<TSource>(IEnumerable<TSource>, Func<TSource,Int64>) to calculate an average.
注意
このコード例で使用するオーバーロードされたメソッドのオーバーロードは、このトピックで説明する特定のオーバーロードとは異なります。This code example uses an overload of this overloaded method that is different from the specific overload that this topic describes. コード例をこのトピックに適用するには、selector
関数の本体を変更します。To extend the example to this topic, change the body of the selector
function.
string[] numbers = { "10007", "37", "299846234235" };
double average = numbers.Average(num => Convert.ToInt64(num));
Console.WriteLine("The average is {0}.", average);
// This code produces the following output:
//
// The average is 99948748093.
' Create an array of strings.
Dim numbers() As String = {"10007", "37", "299846234235"}
' Determine the average number after converting each
' string to an Int64 value.
Dim avg As Double =
numbers.Average(Function(number) Convert.ToInt64(number))
' Display the output.
Console.WriteLine($"The average is {avg}")
' This code produces the following output:
'
' The average is 99948748093
注釈
Visual Basic のクエリ式の構文では、 Aggregate Into Average()
句はの呼び出しに変換 Average します。In Visual Basic query expression syntax, an Aggregate Into Average()
clause translates to an invocation of Average.
こちらもご覧ください
適用対象
Average<TSource>(IEnumerable<TSource>, Func<TSource,Nullable<Double>>)
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static Nullable<double> Average(System::Collections::Generic::IEnumerable<TSource> ^ source, Func<TSource, Nullable<double>> ^ selector);
public static double? Average<TSource> (this System.Collections.Generic.IEnumerable<TSource> source, Func<TSource,Nullable<double>> selector);
static member Average : seq<'Source> * Func<'Source, Nullable<double>> -> Nullable<double>
<Extension()>
Public Function Average(Of TSource) (source As IEnumerable(Of TSource), selector As Func(Of TSource, Nullable(Of Double))) As Nullable(Of Double)
型パラメーター
- TSource
source
の要素の型。The type of the elements of source
.
パラメーター
- source
- IEnumerable<TSource>
平均値計算の対象となる値のシーケンス。A sequence of values to calculate the average of.
戻り値
値のシーケンスの平均値、または、ソース シーケンスが空または null
である値のみを含む場合は null
。The average of the sequence of values, or null
if the source sequence is empty or contains only values that are null
.
例外
source
または selector
が null
です。source
or selector
is null
.
例
次のコード例は、を使用して平均を計算する方法を示して Average<TSource>(IEnumerable<TSource>, Func<TSource,Int64>) います。The following code example demonstrates how to use Average<TSource>(IEnumerable<TSource>, Func<TSource,Int64>) to calculate an average.
注意
このコード例で使用するオーバーロードされたメソッドのオーバーロードは、このトピックで説明する特定のオーバーロードとは異なります。This code example uses an overload of this overloaded method that is different from the specific overload that this topic describes. コード例をこのトピックに適用するには、selector
関数の本体を変更します。To extend the example to this topic, change the body of the selector
function.
string[] numbers = { "10007", "37", "299846234235" };
double average = numbers.Average(num => Convert.ToInt64(num));
Console.WriteLine("The average is {0}.", average);
// This code produces the following output:
//
// The average is 99948748093.
' Create an array of strings.
Dim numbers() As String = {"10007", "37", "299846234235"}
' Determine the average number after converting each
' string to an Int64 value.
Dim avg As Double =
numbers.Average(Function(number) Convert.ToInt64(number))
' Display the output.
Console.WriteLine($"The average is {avg}")
' This code produces the following output:
'
' The average is 99948748093
注釈
Visual Basic のクエリ式の構文では、 Aggregate Into Average()
句はの呼び出しに変換 Average します。In Visual Basic query expression syntax, an Aggregate Into Average()
clause translates to an invocation of Average.
こちらもご覧ください
適用対象
Average<TSource>(IEnumerable<TSource>, Func<TSource,Nullable<Decimal>>)
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static Nullable<System::Decimal> Average(System::Collections::Generic::IEnumerable<TSource> ^ source, Func<TSource, Nullable<System::Decimal>> ^ selector);
public static decimal? Average<TSource> (this System.Collections.Generic.IEnumerable<TSource> source, Func<TSource,Nullable<decimal>> selector);
static member Average : seq<'Source> * Func<'Source, Nullable<decimal>> -> Nullable<decimal>
<Extension()>
Public Function Average(Of TSource) (source As IEnumerable(Of TSource), selector As Func(Of TSource, Nullable(Of Decimal))) As Nullable(Of Decimal)
型パラメーター
- TSource
source
の要素の型。The type of the elements of source
.
パラメーター
- source
- IEnumerable<TSource>
平均値計算の対象となる値のシーケンス。A sequence of values to calculate the average of.
各要素に適用する変換関数。A transform function to apply to each element.
戻り値
値のシーケンスの平均値、または、ソース シーケンスが空または null
である値のみを含む場合は null
。The average of the sequence of values, or null
if the source sequence is empty or contains only values that are null
.
例外
source
または selector
が null
です。source
or selector
is null
.
例
次のコード例は、を使用して平均を計算する方法を示して Average<TSource>(IEnumerable<TSource>, Func<TSource,Int64>) います。The following code example demonstrates how to use Average<TSource>(IEnumerable<TSource>, Func<TSource,Int64>) to calculate an average.
注意
このコード例で使用するオーバーロードされたメソッドのオーバーロードは、このトピックで説明する特定のオーバーロードとは異なります。This code example uses an overload of this overloaded method that is different from the specific overload that this topic describes. コード例をこのトピックに適用するには、selector
関数の本体を変更します。To extend the example to this topic, change the body of the selector
function.
string[] numbers = { "10007", "37", "299846234235" };
double average = numbers.Average(num => Convert.ToInt64(num));
Console.WriteLine("The average is {0}.", average);
// This code produces the following output:
//
// The average is 99948748093.
' Create an array of strings.
Dim numbers() As String = {"10007", "37", "299846234235"}
' Determine the average number after converting each
' string to an Int64 value.
Dim avg As Double =
numbers.Average(Function(number) Convert.ToInt64(number))
' Display the output.
Console.WriteLine($"The average is {avg}")
' This code produces the following output:
'
' The average is 99948748093
注釈
Visual Basic のクエリ式の構文では、 Aggregate Into Average()
句はの呼び出しに変換 Average します。In Visual Basic query expression syntax, an Aggregate Into Average()
clause translates to an invocation of Average.
こちらもご覧ください
適用対象
Average<TSource>(IEnumerable<TSource>, Func<TSource,Int64>)
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static double Average(System::Collections::Generic::IEnumerable<TSource> ^ source, Func<TSource, long> ^ selector);
public static double Average<TSource> (this System.Collections.Generic.IEnumerable<TSource> source, Func<TSource,long> selector);
static member Average : seq<'Source> * Func<'Source, int64> -> double
<Extension()>
Public Function Average(Of TSource) (source As IEnumerable(Of TSource), selector As Func(Of TSource, Long)) As Double
型パラメーター
- TSource
source の要素の型。The type of the elements of source.
パラメーター
- source
- IEnumerable<TSource>
平均値計算の対象となる値のシーケンス。A sequence of values to calculate the average of.
戻り値
値のシーケンスの平均値。The average of the sequence of values.
例外
source
または selector
が null
です。source
or selector
is null
.
source
に要素が含まれていません。source
contains no elements.
例
次のコード例は、を使用して平均を計算する方法を示して Average<TSource>(IEnumerable<TSource>, Func<TSource,Int64>) います。The following code example demonstrates how to use Average<TSource>(IEnumerable<TSource>, Func<TSource,Int64>) to calculate an average.
string[] numbers = { "10007", "37", "299846234235" };
double average = numbers.Average(num => Convert.ToInt64(num));
Console.WriteLine("The average is {0}.", average);
// This code produces the following output:
//
// The average is 99948748093.
' Create an array of strings.
Dim numbers() As String = {"10007", "37", "299846234235"}
' Determine the average number after converting each
' string to an Int64 value.
Dim avg As Double =
numbers.Average(Function(number) Convert.ToInt64(number))
' Display the output.
Console.WriteLine($"The average is {avg}")
' This code produces the following output:
'
' The average is 99948748093
注釈
Visual Basic のクエリ式の構文では、 Aggregate Into Average()
句はの呼び出しに変換 Average します。In Visual Basic query expression syntax, an Aggregate Into Average()
clause translates to an invocation of Average.
こちらもご覧ください
適用対象
Average<TSource>(IEnumerable<TSource>, Func<TSource,Int32>)
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static double Average(System::Collections::Generic::IEnumerable<TSource> ^ source, Func<TSource, int> ^ selector);
public static double Average<TSource> (this System.Collections.Generic.IEnumerable<TSource> source, Func<TSource,int> selector);
static member Average : seq<'Source> * Func<'Source, int> -> double
<Extension()>
Public Function Average(Of TSource) (source As IEnumerable(Of TSource), selector As Func(Of TSource, Integer)) As Double
型パラメーター
- TSource
source
の要素の型。The type of the elements of source
.
パラメーター
- source
- IEnumerable<TSource>
平均値計算の対象となる値のシーケンス。A sequence of values to calculate the average of.
戻り値
値のシーケンスの平均値。The average of the sequence of values.
例外
source
または selector
が null
です。source
or selector
is null
.
source
に要素が含まれていません。source
contains no elements.
例
次のコード例は、を使用して平均を計算する方法を示して Average<TSource>(IEnumerable<TSource>, Func<TSource,Int32>) います。The following code example demonstrates how to use Average<TSource>(IEnumerable<TSource>, Func<TSource,Int32>) to calculate an average.
string[] fruits = { "apple", "banana", "mango", "orange", "passionfruit", "grape" };
double average = fruits.Average(s => s.Length);
Console.WriteLine("The average string length is {0}.", average);
// This code produces the following output:
//
// The average string length is 6.5.
' Create an array of strings.
Dim fruits() As String =
{"apple", "banana", "mango", "orange", "passionfruit", "grape"}
' Determine the average length of the strings in the array.
Dim avg As Double = fruits.Average(Function(s) s.Length)
' Display the output.
Console.WriteLine($"The average string length is {avg}")
' This code produces the following output:
'
' The average string length is 6.5
注釈
Visual Basic のクエリ式の構文では、 Aggregate Into Average()
句はの呼び出しに変換 Average します。In Visual Basic query expression syntax, an Aggregate Into Average()
clause translates to an invocation of Average.
こちらもご覧ください
適用対象
Average<TSource>(IEnumerable<TSource>, Func<TSource,Double>)
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static double Average(System::Collections::Generic::IEnumerable<TSource> ^ source, Func<TSource, double> ^ selector);
public static double Average<TSource> (this System.Collections.Generic.IEnumerable<TSource> source, Func<TSource,double> selector);
static member Average : seq<'Source> * Func<'Source, double> -> double
<Extension()>
Public Function Average(Of TSource) (source As IEnumerable(Of TSource), selector As Func(Of TSource, Double)) As Double
型パラメーター
- TSource
source
の要素の型。The type of the elements of source
.
パラメーター
- source
- IEnumerable<TSource>
平均値計算の対象となる値のシーケンス。A sequence of values to calculate the average of.
戻り値
値のシーケンスの平均値。The average of the sequence of values.
例外
source
または selector
が null
です。source
or selector
is null
.
source
に要素が含まれていません。source
contains no elements.
例
次のコード例は、を使用して平均を計算する方法を示して Average<TSource>(IEnumerable<TSource>, Func<TSource,Int64>) います。The following code example demonstrates how to use Average<TSource>(IEnumerable<TSource>, Func<TSource,Int64>) to calculate an average.
注意
このコード例で使用するオーバーロードされたメソッドのオーバーロードは、このトピックで説明する特定のオーバーロードとは異なります。This code example uses an overload of this overloaded method that is different from the specific overload that this topic describes. コード例をこのトピックに適用するには、selector
関数の本体を変更します。To extend the example to this topic, change the body of the selector
function.
string[] numbers = { "10007", "37", "299846234235" };
double average = numbers.Average(num => Convert.ToInt64(num));
Console.WriteLine("The average is {0}.", average);
// This code produces the following output:
//
// The average is 99948748093.
' Create an array of strings.
Dim numbers() As String = {"10007", "37", "299846234235"}
' Determine the average number after converting each
' string to an Int64 value.
Dim avg As Double =
numbers.Average(Function(number) Convert.ToInt64(number))
' Display the output.
Console.WriteLine($"The average is {avg}")
' This code produces the following output:
'
' The average is 99948748093
注釈
Visual Basic のクエリ式の構文では、 Aggregate Into Average()
句はの呼び出しに変換 Average します。In Visual Basic query expression syntax, an Aggregate Into Average()
clause translates to an invocation of Average.
こちらもご覧ください
適用対象
Average<TSource>(IEnumerable<TSource>, Func<TSource,Decimal>)
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static System::Decimal Average(System::Collections::Generic::IEnumerable<TSource> ^ source, Func<TSource, System::Decimal> ^ selector);
public static decimal Average<TSource> (this System.Collections.Generic.IEnumerable<TSource> source, Func<TSource,decimal> selector);
static member Average : seq<'Source> * Func<'Source, decimal> -> decimal
<Extension()>
Public Function Average(Of TSource) (source As IEnumerable(Of TSource), selector As Func(Of TSource, Decimal)) As Decimal
型パラメーター
- TSource
source
の要素の型。The type of the elements of source
.
パラメーター
- source
- IEnumerable<TSource>
平均値の計算に使用される値のシーケンス。A sequence of values that are used to calculate an average.
戻り値
値のシーケンスの平均値。The average of the sequence of values.
例外
source
または selector
が null
です。source
or selector
is null
.
source
に要素が含まれていません。source
contains no elements.
例
次のコード例は、を使用して平均を計算する方法を示して Average<TSource>(IEnumerable<TSource>, Func<TSource,Int64>) います。The following code example demonstrates how to use Average<TSource>(IEnumerable<TSource>, Func<TSource,Int64>) to calculate an average.
注意
このコード例で使用するオーバーロードされたメソッドのオーバーロードは、このトピックで説明する特定のオーバーロードとは異なります。This code example uses an overload of this overloaded method that is different from the specific overload that this topic describes. コード例をこのトピックに適用するには、selector
関数の本体を変更します。To extend the example to this topic, change the body of the selector
function.
string[] numbers = { "10007", "37", "299846234235" };
double average = numbers.Average(num => Convert.ToInt64(num));
Console.WriteLine("The average is {0}.", average);
// This code produces the following output:
//
// The average is 99948748093.
' Create an array of strings.
Dim numbers() As String = {"10007", "37", "299846234235"}
' Determine the average number after converting each
' string to an Int64 value.
Dim avg As Double =
numbers.Average(Function(number) Convert.ToInt64(number))
' Display the output.
Console.WriteLine($"The average is {avg}")
' This code produces the following output:
'
' The average is 99948748093
注釈
Visual Basic のクエリ式の構文では、 Aggregate Into Average()
句はの呼び出しに変換 Average します。In Visual Basic query expression syntax, an Aggregate Into Average()
clause translates to an invocation of Average.