simple question, I import a DLL function and the parameter are int*.
When I try to enter Method(0), I get an error which says: \"int and int* can not convert\".
It's a pointer to an int. Generally best avoided in managed code. You might want to post your imported method declaration. An IntPtr is usually sufficient for this kind of interop.