O
okardak onur
Guest
how to get address of any procedure from my project
i use delegates, Func<> or Action<> but all of them fail to give me uint address pointer to my procedure in c#
in assembly it would be mov eax,addr myProc
but in c#
void myProc(){}
int pointer=&myProc; //fails
why?? how to get address??
Continue reading...
i use delegates, Func<> or Action<> but all of them fail to give me uint address pointer to my procedure in c#
in assembly it would be mov eax,addr myProc
but in c#
void myProc(){}
int pointer=&myProc; //fails
why?? how to get address??
Continue reading...