是的,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
列表并輸出每個單詞。