list クラス : Count ゲッタ

説明

リストに含まれる要素の数を取得します。

構文

listInstance.Count

引数

無し

返り値

クラス説明
intリストに含まれる要素の数。

サンプルコード

//anyListはlist型のインスタンス.

int number = anyList.Count;

注意

System.Collections.Generic.List<t>.Countのラッパーです。

参照リンク

Copyright © Rice All rights reserved.