list クラス : Reverse() メソッド
説明
リスト全体の要素の順序を逆にします。
構文
listInstance.Reverse()
引数
無し
返り値
無し
サンプルコード
//anyListはlist{string}型のインスタンス.
anyList.Reverse();
注意
System.Collections.Generic.List<t>.Reverse()のラッパーです。
リスト全体の要素の順序を逆にします。
listInstance.Reverse()
無し
無し
//anyListはlist{string}型のインスタンス.
anyList.Reverse();
System.Collections.Generic.List<t>.Reverse()のラッパーです。