當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


C# Linq Reverse()用法及代碼示例


在這裏,我們將創建一個整數數組。然後使用 Linq Reverse() 方法反轉數組並在控製台屏幕上打印反轉的數組。

程序:

下麵給出了演示 Linq Reverse() 方法的源代碼。給定的程序在 Microsoft Visual Studio 上編譯並成功執行。

//C# program to demonstrate Linq Reverse() method.

using System;
using System.Linq;
using System.Collections.Generic;

class Program
{
    static void Main(string[] args)
    {
        int[] numbers = new int[] { 20,50,40,39,43,23,45,17,38};
        
        IEnumerable<int> result = numbers.Reverse();

        Console.WriteLine("Reversed array:");
        foreach (var item in result)
        {
            Console.Write(item + " ");
        }
        Console.WriteLine();
    }
}

輸出:

Reversed array:
38 17 45 23 43 39 40 50 20
Press any key to continue . . .

說明:

在上麵的程序中,我們創建了一個包含 Main() 方法的類 Demo。 Main() 方法是程序的入口點。

在 Main() 方法中,我們創建了一個整數數組,然後使用 Reverse() 方法反轉數組,然後在控製台屏幕上使用 "foreach" 循環打印它們。




相關用法


注:本文由純淨天空篩選整理自 C# program to demonstrate the example of Linq Reverse() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。