1 // CS0425: The constraints for type parameter `T' of method `Test.Baz.Method<T,V>()' must match the constraints for type parameter `T' of interface method `Test.IBar.Method<T,V>()'. Consider using an explicit interface implementation instead
13 void Method
<T
, V
>() where T
: IFoo where V
: T
;
16 public class Baz
: IBar
18 public void Method
<T
, V
>() where T
: IBar where V
: T