C# 3.5: I can't get this code to compile:
HashSet<string> classDeclarations = new HashSet<string>(StringComparison.InvariantCultureIgnoreCase);
I get this error:
Argument 1: cannot convert from 'System.StringComparison' to 'System.Collections.Generic.IEqualityComparer'
So I can't pass a comparison?