業界名 (文字列) の一意のアルファベット順のリストを取得しようとしています。これが私のコードです:
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
最後の行でコンパイル エラーがスローされます。
私は何を間違っていますか?