使用 LINQ 反转城市列表的 C# 程序
给定一个城市名称列表,我们需要反转城市列表,这可以使用 LINQ 中的 reverse() 方法完成。 Reverse() 方法反转指定列表中元素的顺序。它在 Queryable 和 Enumerable 类中都可用。如果给定的源为空,它将返回 ArgumentNullException。
句法:
public static void Reverse ();
例子:
Input : ["mumbai", "pune", "bangalore", "hyderabad"]
Output : ["hyderabad", "bangalore", "pune", "mumbai"]
Input : ["chennai", "vizag", "delhi"]
Output : ["delhi", "vizag", "chennai"]
方法:
- A list of cities is defined using arrayList.
- The list of cities is reverse using the Reverse() method.
- Finally resultant array is printed using the foreach loop.
C#
cities.Reverse();
输出
foreach (var city in cities)
{
Console.Write(city + " ");
}