我有多个类(为了解释目的而简化):
public class A : BaseClass,
IHandleEvent<Event1>,
IHandleEvent<Event2>
{
}
public class B : BaseClass,
IHandleEvent<Event3>,
IHandleEvent<Event4>
{
}
public class C : BaseClass,
IHandleEvent<Event2>,
IHandleEvent<Event3>
{
}
在我的&#34; BaseClass&#34;我有一个方法,我想检查Child-class是否实现了特定事件的IHandleEvent
。
public void MyMethod()
{
...
var event = ...;
...
// If this class doesn't implement an IHandleEvent of the given event, return
...
}
从this SO-answer我知道如何检查对象是否实现了通用接口(实现IHandleEvent<>
),如下所示:
if (this.GetType().GetInterfaces().Any(x =>
x.IsGenericType && x.GenericTypeDefinition() == typeof(IHandleEvent<>)))
{
... // Some log-text
return;
}
但是,我不知道如何检查对象是否实现了SPECIFIC通用接口(实现IHandleEvent<Event1>
)。那么,如何在if?
答案 0 :(得分:6)
只需使用is
或as
运营商:
if( this is IHandleEvent<Event1> )
....
或者,如果在编译时不知道类型参数:
var t = typeof( IHandleEvent<> ).MakeGenericType( /* any type here */ )
if( t.IsAssignableFrom( this.GetType() )
....