internal unsafe MethodImplementation(MethodImplRow* pRow, PEFile peFile) { FluentAsserts.CheckNotNull((void *)pRow, "pRow"); peFile.CheckNotNull("peFile"); m_implementedMethod = new MethodReference(pRow->GetImplementedMethod(peFile)); m_implementingMethod = new MethodReference(pRow->GetImplementingMethod(peFile)); }
public FunctionPointerType(Method signature) : base(TypeKind.FunctionPointer) { m_signature = signature.CheckNotNull("signature"); }