list クラス : Reverse() メソッド

説明

リスト全体の要素の順序を逆にします。

構文

listInstance.Reverse()

引数

無し

返り値

無し

サンプルコード

//anyListはlist{string}型のインスタンス.

anyList.Reverse();

注意

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

参照リンク

Copyright © Rice All rights reserved.