views:

2011

answers:

2

i'm usually using Win32 API in c#.NET. But not declare all in one application. Sometimes usually using user32, sometimes gdi32 ... I think when i declare all api function, those use lot of memory. What is the best way using API in .NET ?

+3  A: 

Most of the Win32 API is available through managed abstractions. Otherwise, declare the ones you need using DllImport.

LoadLibrary should really only be used where you have provided alternate functionality, that is, your application can work even without that particular API function. If the API function is critical, using DllImport will let the loader worry about whether the function exists or not.

Zooba
+3  A: 

LoadLibrary is useful when you are writing code that might be used in an environment that may or may not have the desired dll -- for example, you might have a program that can use a special crypto dll if it is available, but can still operate without it. Using DllImport would require that dll to exist.

Toybuilder
This is generally the time I end up using LoadLibrary.
jussij