Enumerable.SkipLast<TSource>(IEnumerable<TSource>, Int32) 메서드  
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
소스 컬렉션의 마지막 count 요소가 생략된 source의 요소를 포함하는 열거 가능한 새 컬렉션을 반환합니다.
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
 static System::Collections::Generic::IEnumerable<TSource> ^ SkipLast(System::Collections::Generic::IEnumerable<TSource> ^ source, int count);
	public static System.Collections.Generic.IEnumerable<TSource> SkipLast<TSource> (this System.Collections.Generic.IEnumerable<TSource> source, int count);
	static member SkipLast : seq<'Source> * int -> seq<'Source>
	<Extension()>
Public Function SkipLast(Of TSource) (source As IEnumerable(Of TSource), count As Integer) As IEnumerable(Of TSource)
    형식 매개 변수
- TSource
 
열거 가능한 컬렉션에 있는 요소의 형식입니다.
매개 변수
- source
 - IEnumerable<TSource>
 
열거 가능한 컬렉션 인스턴스입니다.
- count
 - Int32
 
컬렉션 끝에서 생략할 요소 수입니다.
반환
              source의 요소에서 컬렉션 끝의 count 요소를 뺀 열거 가능한 새 컬렉션입니다.
예외
              source은 null입니다.
설명
가 양수가 아니면 count 이 메서드는 열거 가능한 컬렉션의 동일한 복사본을 source 반환합니다.