C#リストを逆順に処理する

foreach (MyItem item in items.Reverse())
{
// itemに対する処理ここで行う
}