Suppose I have an empty interface class IBaseInterface which is used only to "label" implementing classes as being interfaces themselves.

Is there any way to do something like this?

For example:

public class MyClass : T where T : IBaseInterface
{
}
link|improve this question

2  
How would the generic type work? – BoltClock Jul 9 '11 at 20:37
In .NET you better use attributes instead of empty interfaces if you just want to tag/mark a class for a specific behaviour. – Caspar Kleijne Jul 9 '11 at 20:43
feedback

3 Answers

up vote 2 down vote accepted

No, you can't do that, since the compiler has to know which interface the class implements when you declare the class. You can have generic parameters to the interface, but the actual interface has to be specified.

link|improve this answer
feedback

Not like that, there isn't. I would strongly recommend using a composition pattern to try and achieve whatever you're trying. As an alternative, you might find DynamicProxy (or some other proxy solution) is what you're going for.

link|improve this answer
feedback

The type you're declaring isn't even generic. Something like this:

class MyClass<T> : T where T : IBaseInterface

could work under some circumstances (for example, if C++ templates were used instead of .Net generics), but it's simply not valid C# code.

I'm not sure what are the “labels” used for, but an interface with a property

ClassType ClassType { get; }

where ClassType is an enum could work.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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