I don't believe what you want is possible if there is no type or interface which is applicable to all objects that you might want to accept. If you have control over the types of things that you'll be handling, you should define an interface which "inherits" all your constraints, and then have the function accept a parameter of that type. If you also want to include a base type in your constraint, define an interface:
Interface ISelf(Of Out T)
Function Self As T
End Interface
and then have the composite constraint interface inherit ISelf(Of DesiredBaseType). For example, if you are going to have a routine accept objects which derive from type Customer and implement both IDisposable and IEnumerable(Of String) [silly arbitrary example], define:
Interface IDisposableEnumerableOfStringAndSelf(Of T)
Inherits IDisposable, IEnumerable(Of String), ISelf(Of T)
End Interface
and then have those routines accept an IDIsposableEnumerableOfStringAndSelf(Of Customer).
Note that this will only work if the class being passed in explicitly implements either IDIsposableEnumerableOfStringAndSelf(Of Customer) or else IDIsposableEnumerableOfStringAndSelf(Of T) for some T that's a subtype of Customer. Interfaces are not duck-typed (a fact which is important, since it's possible and sometimes useful to have an interface with no members, e.g. to indicate that a class promises to be immutable).
(obj is IA && obj is IB)– user414076 May 24 '10 at 17:36foo(IA t), I can pass any object that implementsIAwithout casting it. Is it different for generics? – Powerlord May 24 '10 at 18:21object? If bar was generic on the same T also you wouldn't have the issue here (i.e. fix the problem at the source not downstream). – Ian Mercer May 24 '10 at 18:26