ReflectorIsExplicitInterfaceImplementation(MethodInfo, MethodInfo) Method
Determines whether the specified method is an explicit interface implementation.
Namespace: KGySoft.ReflectionAssembly: KGySoft.CoreLibraries (in KGySoft.CoreLibraries.dll) Version: 10.0.0
public static bool IsExplicitInterfaceImplementation(
MethodInfo method,
out MethodInfo interfaceMethod
)
Public Shared Function IsExplicitInterfaceImplementation (
method As MethodInfo,
<OutAttribute> ByRef interfaceMethod As MethodInfo
) As Boolean
public:
static bool IsExplicitInterfaceImplementation(
MethodInfo^ method,
[OutAttribute] MethodInfo^% interfaceMethod
)
static member IsExplicitInterfaceImplementation :
method : MethodInfo *
interfaceMethod : MethodInfo byref -> bool
- method MethodInfo
- The method to check.
- interfaceMethod MethodInfo
- When this method returns , then contains the method declared on the interface. This parameter is passed uninitialized.
Boolean, if the specified
method is an explicit interface implementation; otherwise,
.