我正在尝试获得一个独特的、按字母顺序排列的行业名称(字符串)列表。这是我的代码:
HashSet<string> industryHash = new HashSet<string>();
List<string> industryList = new List<string>();
List<string> orderedIndustries = new List<string>();
// add a few items to industryHash
industryList = industryHash.ToList<string>();
orderedIndustries = industryList.Sort(); //throws compilation error
最后一行抛出编译错误:“无法将类型'void'隐式转换为'System.Collections.Generic.List”
我究竟做错了什么?