see the code:
class VirtualMemoryManager
{
[DllImport("kernel32.dll",EntryPoint="GetCurrentProcess")]
internal static extern IntPtr GetCurrentProcessHandle();
}
Why the "GetCurrentProcessHandle" must "static"
|
see the code:
Why the "GetCurrentProcessHandle" must "static" |
|||||||
|
Source: http://msdn.microsoft.com/en-us/magazine/cc164123.aspx |
|||
|
|
|
Externally imported functions are static by nature. By not making them static they will not gain anything. An instance method can use local variables, which is impossible with dll import routines anyway. |
|||
|
|