TypeBuilder.DefineMethodOverrideCore(MethodInfo, MethodInfo) Method

Definition

When overridden in a derived class, specifies a given method body that implements a given method declaration, potentially with a different name.

protected:
 abstract void DefineMethodOverrideCore(System::Reflection::MethodInfo ^ methodInfoBody, System::Reflection::MethodInfo ^ methodInfoDeclaration);
protected abstract void DefineMethodOverrideCore (System.Reflection.MethodInfo methodInfoBody, System.Reflection.MethodInfo methodInfoDeclaration);
abstract member DefineMethodOverrideCore : System.Reflection.MethodInfo * System.Reflection.MethodInfo -> unit
Protected MustOverride Sub DefineMethodOverrideCore (methodInfoBody As MethodInfo, methodInfoDeclaration As MethodInfo)

Parameters

methodInfoBody
MethodInfo

The method body to be used. This should be a MethodBuilder object.

methodInfoDeclaration
MethodInfo

The method whose declaration is to be used.

Applies to