I\'m wondering whether anyone has a decent explanation or overview on the negative aspects of using DLLImport / PInvoke on Win32 methods from managed .Net code?
I plan t
Here are some issues I see with PInvoke:
If you plan to use lots of unmanaged functions I would create a mixed DLL (http://msdn.microsoft.com/en-us/library/x0w2664k.aspx) rather than declaring a bunch of PInvokes.