Architect's Log

I'm a Cloud Architect. I'm highly motivated to reduce toils with driving DevOps.

IEnumerable.Reverseメソッド

Enumerable.Reverse(TSource) メソッド (System.Linq)
シーケンスの要素の順序を反転させます。

ソースコード

using System;
using System.Linq;

namespace LinqSample {
    class Program {
        static void Main(string[] args) {
            int[] numbers = new int[] { 1, 2, 3, 4, 5 };
            // 逆順にする
            foreach (int number in numbers.Reverse()) {
                Console.WriteLine(number);                
            }
            Console.ReadKey();
        }
    }
}

実行結果