// dnlib: See LICENSE.txt for more info
namespace dnlib.DotNet {
///
/// Describes which method some method implements
///
public struct MethodOverride {
///
/// The method body. Usually a but could be a
///
public IMethodDefOrRef MethodBody;
///
/// The method implements
///
public IMethodDefOrRef MethodDeclaration;
///
/// Constructor
///
/// Method body
/// The method implements
public MethodOverride(IMethodDefOrRef methodBody, IMethodDefOrRef methodDeclaration) {
MethodBody = methodBody;
MethodDeclaration = methodDeclaration;
}
}
}