vote up 0 vote down star

I notice in the MSDN documentation that there are multiple ways to declare a reference to a function in an external DLL from within a VB.NET program. The confusing thing is that MSDN claims that you can only use the DllImport style with Shared Function prototypes "in rare cases", but I couldn't find the explanation for this statement.

Can any of the .NET gurus explain to me why these are different, and where I would appropriately use each case? I greatly appreciate the help :)

flag

1 Answer

vote up 2 vote down check

DllDeclare is really an attempt to maintain a PInvoke syntax which would be more familiar to VB6 users converting to VB.Net. It has many of the same features as PInvoke but the marshalling of certain types, in particular strings, are very different and can cause a bit of confusion to people more familiar with DllImport rules.

I'm not entirely sure what the documentation is alluding to with the "rare" distinction. I use DllImport in my code frequently from both VB.Net and C# without issue.

In general, I would use DllImport over DllDeclare unless you come from a vb6 background. The documentation and samples for DllImport are much better and there are many tools aimed at generating DllImport declarations.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.