As per the title, is it possible to declare type-negating constraints in c# 4 ?
|
show 2 more comments
feedback
|
|
You use a constraint so you can ensure the type you use has some properties/methods/... you want to use. A generic with a type-negating constraint doesn't make any sense, as there is no purpose to know the absence of some properties/methods you do not want to use. | |||
|
feedback
|
|
No, but it would be possible to check with an "is" and then handle it appropriately... | |||
|
feedback
|
|
As far as I know it is not possible to do that. What you can do is some runtime checking:
| |||||
feedback
|
void doIt<T>(T what){}void doIt<T>(IEnumerable<T> whats){}- at the moment there is ambiguity becauseTin the first method could be anIEnumerable<>(so I would like to specify thatTshould NOT beIEnumerable)... – Cel Jan 4 at 14:14