温馨提示×

c# set集合如何进行排序

c#
小樊
81
2024-11-16 14:40:41
栏目: 编程语言

在C#中,要对HashSet进行排序,您需要先将其转换为List,然后使用LINQ的OrderBy方法进行排序。以下是一个示例:

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

class Program
{
    static void Main()
    {
        HashSet<int> myHashSet = new HashSet<int> { 3, 1, 4, 1, 5, 9, 2, 6, 5, 3, 5 };

        // 将HashSet转换为List
        List<int> myList = myHashSet.ToList();

        // 使用LINQ对List进行排序
        List<int> sortedList = myList.OrderBy(x => x).ToList();

        // 输出排序后的List
        Console.WriteLine("Sorted List:");
        foreach (int item in sortedList)
        {
            Console.Write(item + " ");
        }
    }
}

在这个示例中,我们首先创建了一个包含一些整数的HashSet。然后,我们使用ToList()方法将HashSet转换为List。接下来,我们使用LINQ的OrderBy方法对List进行排序。最后,我们遍历并输出排序后的List。

0