LinkedList<T>.Last プロパティ

定義

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) 操作になります。

適用対象