LinkedList<T>.Last プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
LinkedList<T> ノードの最後のノードを取得します。
public:
property System::Collections::Generic::LinkedListNode<T> ^ Last { System::Collections::Generic::LinkedListNode<T> ^ get(); };
public System.Collections.Generic.LinkedListNode<T> Last { get; }
public System.Collections.Generic.LinkedListNode<T>? Last { get; }
member this.Last : System.Collections.Generic.LinkedListNode<'T>
Public ReadOnly Property Last As LinkedListNode(Of T)
プロパティ値
LinkedListNode<T> の最後の LinkedList<T>。
例
このプロパティを含む例については、 クラスを LinkedList<T> 参照してください。
注釈
LinkedList<T> は null
参照型に対して有効 Value な として受け入れ、重複する値を許可します。
が空の LinkedList<T> 場合、 First プロパティと Last プロパティには が含まれます null
。
このプロパティ値を取得することは、O(1) 操作になります。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET