As per the title, is it possible to declare type-negating constraints in c# 4 ?

link|improve this question

6  
even if there were, can you describe a use case? – Mitch Wheat Jan 4 at 13:18
1  
It is strange to observe you have such a requirement. you can only code against the type T that you know that belongs to a family of class. How can you code in generics otherwise ? Either you don't need generics in this case or you need to revise your use-cases. – this. __curious_geek Jan 4 at 13:46
1  
the use-case of interest was to allow the following overloads to co-exist void doIt<T>(T what){} void doIt<T>(IEnumerable<T> whats){} - at the moment there is ambiguity because T in the first method could be an IEnumerable<> (so I would like to specify that T should NOT be IEnumerable)... – Cel Jan 4 at 14:14
3  
I draw your attention to the fact that types with methods that take a T and a sequence of T usually have different names for the two methods. Add and AddRange, in List<T>, for example,. There's a reason for that. Follow that pattern. – Eric Lippert Jan 4 at 14:51
1  
Why the close vote? The answer to the question may be "no", but that doesn't mean the question is without value. – phoog Jan 4 at 19:39
show 2 more comments
feedback

4 Answers

up vote 12 down vote accepted

No - there's no such concept either in C# or in the CLR.

link|improve this answer
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.

link|improve this answer
feedback

No, but it would be possible to check with an "is" and then handle it appropriately...

link|improve this answer
feedback

As far as I know it is not possible to do that.

What you can do is some runtime checking:

public bool MyGenericMethod<T>()
{
    // if (T is IEnumerable) // don't do this

    if (typeof(T).GetInterface("IEnumerable") == null)
        return false;

    // ...

    return true;
}
link|improve this answer
You can't use is like that - it tests whether an object is compatible with a type. – Jon Skeet Jan 4 at 13:32
what you mean is if (typeof(T) == typeof(IEnumerable)) {} – kev Jan 4 at 13:53
feedback

Your Answer

 
or
required, but never shown

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