Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question
(And even if it's not a formalized practice, I'm still interested in y'all's various solutions/reasoning, of course.) – Cerebrate Dec 26 '12 at 4:21
4  
In the specific case you mention, it might be worth investigating the unconstrained melody library. – Paul Phillips Dec 26 '12 at 4:24
Answer here – knaki02 Dec 26 '12 at 12:40
@PaulPhillips - ooo, that's clever. I've got some other cases to handle too, but not quite so many that running the assembly through a post-processor appeals, alas, but it's good to know that it exists. – Cerebrate Dec 28 '12 at 10:32
@knaki02 - Thanks. Guess things haven't changed since then, and I'll also be defining my own TypeArgumentException. – Cerebrate Dec 28 '12 at 10:33

1 Answer

Constraining to an enum can be adequately done by checking for the convertible interface:

where T : struct, IConvertible

This should save you some of the reflection work.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.