getFunctionPointer()
-
i have pointer of the method with getFunctionPointer() but how can i call method using that pointer. There are no answer on hole Net and 666MSDN :confused::mad: winx
-
I never knew about function pointer in C#, but at a guess they would return a delegate, or function signature, not the actual function itself?
-
I never knew about function pointer in C#, but at a guess they would return a delegate, or function signature, not the actual function itself?
i think there is no such concept of "Function Pointer" in C#, it might implemented as a Delegate in C#
-
i think there is no such concept of "Function Pointer" in C#, it might implemented as a Delegate in C#
there also function Marshal.getDelegateForFunctionPointer(ptr,type) in 2.0 which make delegate from functionPointer (IntPtr) obtained by RuntimeMethodHandle.getFunctionPointer. I try to call function just by its address (function pointer) and there is no any article on all web There is many on C++ DLL which is microsoft base attention ...... winx