Home
last modified time | relevance | path

Searched refs:innerMethod (Results 1 – 1 of 1) sorted by relevance

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Utilities/Binding/
DNativeBinder.cs229 private Delegate WrapExport(Type delegateType, MethodInfo innerMethod) in WrapExport() argument
234 Type[] paramTypes = innerMethod.GetParameters().Select(p => p.ParameterType).ToArray(); in WrapExport()
237 …var attacheeWrapper = new DynamicMethod(innerMethod.Name + "Wrapper", innerMethod.ReturnType, para… in WrapExport()
240 if(innerMethod.ReturnType != typeof(void)) in WrapExport()
242 retval = il.DeclareLocal(innerMethod.ReturnType); in WrapExport()
254 il.EmitCall(OpCodes.Call, innerMethod, null); in WrapExport()