溫馨提示×

c# set集合如何進行排序

c#
小樊
81
2024-11-16 14:40:41
欄目: 編程語言

在C#中,要對HashSet進行排序,您需要先將其轉(zhuǎn)換為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轉(zhuǎn)換為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 + " ");
        }
    }
}

在這個示例中,我們首先創(chuàng)建了一個包含一些整數(shù)的HashSet。然后,我們使用ToList()方法將HashSet轉(zhuǎn)換為List。接下來,我們使用LINQ的OrderBy方法對List進行排序。最后,我們遍歷并輸出排序后的List。

0