Enumerable.First 方法 
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
返回序列中的第一个元素。
重载
| First<TSource>(IEnumerable<TSource>) | 
						 返回序列中的第一个元素。  | 
        	
| First<TSource>(IEnumerable<TSource>, Func<TSource,Boolean>) | 
						 返回序列中满足指定条件的第一个元素。  | 
        	
First<TSource>(IEnumerable<TSource>)
- Source:
 - First.cs
 
- Source:
 - First.cs
 
- Source:
 - First.cs
 
返回序列中的第一个元素。
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
 static TSource First(System::Collections::Generic::IEnumerable<TSource> ^ source);
	public static TSource First<TSource> (this System.Collections.Generic.IEnumerable<TSource> source);
	static member First : seq<'Source> -> 'Source
	<Extension()>
Public Function First(Of TSource) (source As IEnumerable(Of TSource)) As TSource
    类型参数
- TSource
 
              source 的元素类型。
参数
- source
 - IEnumerable<TSource>
 
要返回其第一个元素的 IEnumerable<T>。
返回
返回指定序列中的第一个元素。
例外
              source 为 null。
源序列为空。
示例
下面的代码示例演示如何使用 First<TSource>(IEnumerable<TSource>) 返回数组的第一个元素。
int[] numbers = { 9, 34, 65, 92, 87, 435, 3, 54,
                    83, 23, 87, 435, 67, 12, 19 };
int first = numbers.First();
Console.WriteLine(first);
/*
 This code produces the following output:
 9
*/
' Create an array of integers.
Dim numbers() As Integer =
{9, 34, 65, 92, 87, 435, 3, 54, 83, 23, 87, 435, 67, 12, 19}
' Select the first element in the array.
Dim first As Integer = numbers.First()
' Display the output.
Console.WriteLine(first)
' This code produces the following output:
'
' 9
    	注解
              First<TSource>(IEnumerable<TSource>)如果 source 不包含任何元素, 方法将引发异常。 若要在源序列为空时返回默认值,请使用 FirstOrDefault 方法。
适用于
First<TSource>(IEnumerable<TSource>, Func<TSource,Boolean>)
- Source:
 - First.cs
 
- Source:
 - First.cs
 
- Source:
 - First.cs
 
返回序列中满足指定条件的第一个元素。
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
 static TSource First(System::Collections::Generic::IEnumerable<TSource> ^ source, Func<TSource, bool> ^ predicate);
	public static TSource First<TSource> (this System.Collections.Generic.IEnumerable<TSource> source, Func<TSource,bool> predicate);
	static member First : seq<'Source> * Func<'Source, bool> -> 'Source
	<Extension()>
Public Function First(Of TSource) (source As IEnumerable(Of TSource), predicate As Func(Of TSource, Boolean)) As TSource
    类型参数
- TSource
 
              source 的元素类型。
参数
- source
 - IEnumerable<TSource>
 
要从中返回元素的 IEnumerable<T>。
返回
序列中通过指定谓词函数中的测试的第一个元素。
例外
              source 或 predicate 为 null。
示例
下面的代码示例演示如何使用 First<TSource>(IEnumerable<TSource>, Func<TSource,Boolean>) 返回满足条件的数组的第一个元素。
int[] numbers = { 9, 34, 65, 92, 87, 435, 3, 54,
                    83, 23, 87, 435, 67, 12, 19 };
int first = numbers.First(number => number > 80);
Console.WriteLine(first);
/*
 This code produces the following output:
 92
*/
' Create an array of integers.
Dim numbers() As Integer =
{9, 34, 65, 92, 87, 435, 3, 54, 83, 23, 87, 435, 67, 12, 19}
' Select the first element in the array whose value is greater than 80.
Dim first As Integer = numbers.First(Function(number) number > 80)
' Display the output.
Console.WriteLine(first)
' This code produces the following output:
'
' 92
    	注解
              First<TSource>(IEnumerable<TSource>, Func<TSource,Boolean>)如果在 中source找不到匹配的元素, 方法将引发异常。 若要在找不到匹配元素时返回默认值,请使用 FirstOrDefault 方法。