标签: c# linq hashset
如何将hashset的值写入控制台?我不想使用foreach循环。
hashset
foreach
HashSet<string> hashSet=new HashSet<string>(); hashSet.Add("Employee"); hashSet.Add("Employee1"); Console.WriteLine(hashSet.Select(x=>x));
输出
System.Linq.Enumerable
预期输出
员工,员工1