避免重复
如何避免字符串中的重复项(在 C# 中) 例如,我有 a,a,b,b,ci 想要得到像 a,b,c 这样的答案
how can i avoid duplicates from a string (in c#)
eg.i have a,a,b,b,c i want to get the answer like a,b,c
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
通过使用
HashSet
。By using
HashSet<string>
.您可以使用 列表 和 包含检查此问题的方法。
将其声明为
并检查为
You could use a List<> and the Contains method to check for this.
Declare it as
and check as