我希望以这样一种方式声明一个变量,因为它只能分配从Control派生的值并实现ISomething接口。
我打算将ISomething接口添加到控件的衍生物中。
我想从TextBox和DatePicker派生SpecialTextBox和SpecialDatePicker,并在每个上实现ISomething接口。
我希望能够将这些控件中的每一个分配给一个类型为“Control也实现ISomething”的变量,以便从那里调用它们的ISomething方法或者可以将它们添加到控件集合中。形式。
所以....如何声明Type“Control也实现了ISomething”的变量?
理想情况下是VB.Net的答案,但我也会对C#方法感兴趣。
答案 0 :(得分:10)
执行此操作的一种方法是使用泛型 - 即通用方法:
void Foo<T>(T control) where T : Control, ISomething
{
// use "control"
// (you have access to all the Control and ISomething members)
}
现在您可以使用其他Control
变量调用Foo 来实现ISomething
- 您不需要指定泛型,但是:
Foo(someName);
就是你所需要的。如果你给它的东西不是Control
和ISomething
,编译器会告诉你。
更新:我不“做”VB,但反射器告诉我上面的翻译为:
Private Sub Foo(Of T As { Control, ISomething })(ByVal control As T)
End Sub