Is there a particular best practice or other recommendation for reporting an invalid type parameter of a generic method in .NET?
(Specific example: I have a method with the signature
public static T GetRoles<T> (this WindowsIdentity id) where T: struct
I then do some reflection on T to ensure that it is both (a) an Enum, and (b) the right kind of Enum, since that's not a constraint I can use in the where clause.)
For most parameter errors I'd do the obvious thing and throw an ArgumentException with the appropriate parameter name and message, except since a type parameter isn't a regular argument, trying to throw a new ArgumentException ("oops", "T") makes the code analyzer complain that the parameter name, well, isn't one. Which won't stop me if there isn't a better way to do it, of course, but if there is a specified or recommended practice in this area, I'd like to know what it is.