是的,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
列表并输出每个单词。