LinkedList<T>.Count プロパティ

定義

LinkedList<T> に実際に格納されているノードの数を取得します。

public:
 property int Count { int get(); };
public int Count { get; }
member this.Count : int
Public ReadOnly Property Count As Integer

プロパティ値

LinkedList<T> に実際に格納されているノードの数。

実装

このプロパティを含む例については、 クラスを LinkedList<T> 参照してください。

注釈

このプロパティ値を取得することは、O(1) 操作になります。

適用対象