public extern static bool StrongNameKeyGenEx([MarshalAs(UnmanagedType.LPWStr)]string wszKeyContainer, StrongNameKeyGenFlags dwFlags, int dwKeySize, OutIntPtr ppbKeyBlob, Out long pcbKeyBlob);
Flags for StrongNameKeyGen and StrongNameKeyGenEx methods
3/16/2007 7:43:34 AM - -207.46.238.143
An IntPtr is a pointer to a memory location (unmanaged) that adapts to the platform it is running on (64-bit, etc.) UNLIKE a standard int/Integer. You should always use this type for unmanaged calls that require it, even though an int will appear to work on your development machine.