如何从 C# 中的字符串列表中仅获取唯一值?

发布于 2024-07-13 10:38:30 字数 212 浏览 4 评论 0原文

有没有一种简单的方法可以从 C# 中的字符串列表中仅获取唯一值? 我的谷歌今天让我失望了。

(我知道我可以将它们放入另一个结构中,然后再次将它们取出。我正在寻找极其简单的方法,例如 Ruby 的 .uniq 方法。C# 拥有其他一切,所以我可能只是使用了错误的同义词。)

具体来说,这是来自 Linq,因此如果 Linq 有一种内置方法来仅选择唯一的字符串,那就更酷了。

Is there an easy way to get only the unique values out of a list of strings in C#? My google-fu is failing me today.

(I know I can put them in another structure and pull them out again. I'm looking for stupidly-easy, like Ruby's .uniq method. C# has bloody well everything else, so I'm probably just using the wrong synonym.)

Specifically, this is coming from Linq, so if Linq had a built-in way to select only unique strings, that would be even cooler.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

笑脸一如从前 2024-07-20 10:38:30
List<string> strings = new string[] { "Hello", "Hello", "World" }.ToList();

strings = strings.Distinct().ToList();
List<string> strings = new string[] { "Hello", "Hello", "World" }.ToList();

strings = strings.Distinct().ToList();
画离情绘悲伤 2024-07-20 10:38:30

在 .net 3.5 中:-

var strings = new List<string> { "one", "two", "two", "three" };
var distinctStrings = strings.Distinct(); // IEnumerable<string>
var listDistinctStrings = distinctStrings.ToList(); // List<string>

Boom shaka-laka!

In .net 3.5:-

var strings = new List<string> { "one", "two", "two", "three" };
var distinctStrings = strings.Distinct(); // IEnumerable<string>
var listDistinctStrings = distinctStrings.ToList(); // List<string>

Boom shaka-laka!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文