📜  使用 LINQ 反转城市列表的 C# 程序(1)

📅  最后修改于: 2023-12-03 14:49:42.838000             🧑  作者: Mango

使用 LINQ 反转城市列表的 C# 程序

简介

本篇文章将介绍如何使用C#编写程序,使用LINQ方法对列表进行反转。

操作步骤
1. 创建一个城市列表
List<string> cityList = new List<string>() { "New York", "London", "Shanghai", "Paris", "Tokyo" };

这是我们将要使用的城市列表。

2. 使用LINQ的Reverse()方法进行反转

可以使用Reverse()方法直接将列表进行反转。代码如下:

IEnumerable<string> reversedList = cityList.Reverse();
3. 输出反转后的列表

使用foreach循环输出反转后的列表。代码如下:

foreach (string city in reversedList)
{
    Console.WriteLine(city);
}
完整代码
using System;
using System.Collections.Generic;
using System.Linq;

namespace CityList
{
    class Program
    {
        static void Main(string[] args)
        {
            // 创建一个城市列表
            List<string> cityList = new List<string>() { "New York", "London", "Shanghai", "Paris", "Tokyo" };

            // 使用LINQ的`Reverse()`方法进行反转
            IEnumerable<string> reversedList = cityList.Reverse();

            // 输出反转后的列表
            foreach (string city in reversedList)
            {
                Console.WriteLine(city);
            }

            Console.ReadKey();
        }
    }
}
总结

本篇文章向大家介绍了如何使用C#编写程序,使用LINQ方法对列表进行反转。希望本文能够帮助大家更好地理解LINQ方法的使用。