如何从 C# 中的字符串列表中仅获取唯一值?
有没有一种简单的方法可以从 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 .net 3.5 中:-
Boom shaka-laka!
In .net 3.5:-
Boom shaka-laka!