list クラス : Add(class) メソッド

説明

リストの最後にインスタンスを追加します。

構文

listInstance.Add(someClass item)

引数

クラス名前説明
someClassitem追加されるインスタンス。

返り値

無し

サンプルコード

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

anyList.Add(5);

注意

System.Collections.Generic.List<t>.Add(T)のラッパーです。

参照リンク

Copyright © Rice All rights reserved.