vote up 1 vote down star
1

I wish to declare a variable in such a way as it can be assigned only values which derive from Control and also implement the ISomething interface.

I intend to add the ISomething interface to derivatives of controls.

I would like to derive SpecialTextBox and SpecialDatePicker From TextBox and DatePicker and implement the ISomething interface on each.

I would like to be able to assign each of these controls to a variable whose type is "Control which also implements ISomething" so that from there they could either have their ISomething methods invoked or could be added to a control collection on a form.

So.... How do I declare a variable of Type "Control which also implements ISomething"?

Ideally the answer to be in VB.Net but I would be interested in a C# method also.

flag

(note answer to comments) – Marc Gravell Feb 14 at 19:24

1 Answer

vote up 10 vote down check

One way to do this is with generics - i.e. a generic method:

void Foo<T>(T control) where T : Control, ISomething
{
    // use "control"
    // (you have access to all the Control and ISomething members)
}

Now you can call Foo only with other variables that are a Control that implements ISomething - you don't need to specify the generic, though:

Foo(someName);

is all you need. If you've given it something that isn't both a Control and ISomething, the compiler will tell you.


Update: I don't "do" VB, but reflector tells me that the above translates as:

Private Sub Foo(Of T As { Control, ISomething })(ByVal control As T)

End Sub
link|flag
It's going to take a moment for me to comprehend this but it's what I'm after – Rory Becker Feb 14 at 15:34
erm cannot delete previous comment to restate it... I meant "...but (I suspect) it's ..." – Rory Becker Feb 14 at 15:35
So if I understand this correctly... Within the scope of this method...the Type T will meet my requirements.... Well Damn that's good enough... Thanks very much... Great stuff. I can see why your rep is so high :) – Rory Becker Feb 14 at 15:40
That is exactly what the generic constraints mean, yes. Within Foo, you are guaranteed that the type T (supplied by the caller) meets those conditions. – Marc Gravell Feb 14 at 15:43
I don't suppose you can inherit from a generic constraint? :D – Rory Becker Feb 14 at 15:53
show 2 more comments

Your Answer

Get an OpenID
or

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