Enumerable.SkipLast<TSource>(IEnumerable<TSource>, Int32) メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
source
の要素と、省略されたソース コレクションの最後の count
要素を含む、列挙可能な新しいコレクションを返します。
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
コレクションの末尾から省略する要素の数。
戻り値
IEnumerable<TSource>
コレクションの最後の count
要素を引いた、source
の要素を含む、列挙可能な新しいシーケンス。
例外
source
は null
です。
注釈
が正の数でない場合 count
、このメソッドは列挙可能なコレクションの同じコピーを source
返します。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET