vote up 1 vote down star

I want to be able to do this.

MyInterface interface = new ServiceProxyHelper<ProxyType>();

Here's the object structure

MyTypeThatImplementsMyInterface : MyInterface

Will this work?

public class ProxyType : MyInterface {}

public class ServiceProxyHelper<ProxyType> : IDisposable, MyInterface {}
flag

43% accept rate

2 Answers

vote up 3 vote down check

I think this is what you're trying to do:

public class ServiceProxyHelper<T> where T : MyInterface { ... }
link|flag
Yah, that's what I'm trying to do, thanks! – gabosgab Sep 18 '08 at 4:56
vote up 0 vote down

Related question:
Create Generic method constraining T to an Enum

link|flag

Your Answer

Get an OpenID
or

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