中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

c# distinctby能處理字符串嗎

c#
小樊
81
2024-11-28 18:09:13
欄目: 編程語言

是的,C# 的 LINQ 方法 DistinctBy 可以處理字符串。DistinctBy 方法允許你根據指定的屬性或表達式對集合中的元素進行去重。當你使用 DistinctBy 處理字符串時,它會比較字符串的內容,從而去除重復的字符串。

以下是一個使用 DistinctBy 處理字符串的示例:

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

class Program
{
    static void Main()
    {
        List<string> words = new List<string> { "apple", "banana", "apple", "orange", "banana" };

        var distinctWords = words.DistinctBy(word => word);

        foreach (var word in distinctWords)
        {
            Console.WriteLine(word);
        }
    }
}

輸出結果:

apple
banana
orange

在這個示例中,我們創建了一個包含重復字符串的列表 words。然后,我們使用 DistinctBy 方法根據字符串內容對其進行去重,并將結果存儲在 distinctWords 變量中。最后,我們遍歷 distinctWords 列表并輸出每個單詞。

0
闽侯县| 黄龙县| 重庆市| 来宾市| 龙川县| 酒泉市| 阜新市| 资阳市| 吉林市| 三亚市| 阿拉善右旗| 通山县| 平安县| 焉耆| 许昌市| 柞水县| 衢州市| 南丹县| 临桂县| 景泰县| 定结县| 犍为县| 泰和县| 铁力市| 延边| 宁强县| 平度市| 寻乌县| 藁城市| 双牌县| 武义县| 江达县| 逊克县| 玛纳斯县| 绩溪县| 渭源县| 平和县| 千阳县| 永春县| 陆河县| 巴里|