在这里,我们将创建一个整数数组。然后使用 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# Linq Distinct()用法及代码示例
- C# Linq ThenBy()用法及代码示例
- C# Linq Aggregate()用法及代码示例
- C# Linq Union()用法及代码示例
- C# Linq Concat()用法及代码示例
- C# Linq Intersect()用法及代码示例
- C# Linq ThenByDescending()用法及代码示例
- C# List.TrimExcess用法及代码示例
- C# List FindLastIndex()方法用法及代码示例
- C# List.FindIndex()用法及代码示例
- C# List BinarySearch()用法及代码示例
- C# List FindLastIndex()函数用法及代码示例
- C# Decimal.FromOACurrency()用法及代码示例
- C# Int32.CompareTo用法及代码示例
- C# File.WriteAllLines(String, IEnumerable<String>)用法及代码示例
- C# Type.GetTypeHandle()用法及代码示例
- C# Uri.IsBaseOf()用法及代码示例
- C# String.ToUpperInvariant用法及代码示例
- C# File.Copy(String, String, Boolean)用法及代码示例
- C# Uri.IsHexEncoding()用法及代码示例
注:本文由纯净天空筛选整理自 C# program to demonstrate the example of Linq Reverse() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。