Is there a one-stop shop for determining which .Net types/attributes to use, given a native type?

Example would look something like this:

    Native Type  |     .Net Type
---------------------------------------
     int         |        Integer
     int*        |        IntPtr (or is it ref int?)
     LPCSTR      |        [MarshalAs(UnmanagedType.LPStr)]String
     ...

Guidelines for custom structures: 
    ...

Also, as a related aside, what's the most reliable place for looking up marshalling declarations for Win32 functions?

link|improve this question

77% accept rate
feedback

6 Answers

up vote 3 down vote accepted

This CodeProject article has a nice list: http://www.codeproject.com/kb/dotnet/Win32APICPlusPlustoDotNET.aspx

link|improve this answer
feedback

Here is a chart: http://msdn.microsoft.com/en-us/library/ac7ay120.aspx

link|improve this answer
Close call between this and Daniel's answer – BlueRaja - Danny Pflughoeft Jun 30 '10 at 19:42
feedback

pinvoke.net is a great resource for win32 function signatures. Otherwise you really have to look at the C/C++ include files to figure out the calling convention and arguments. Complex structs are a little tougher, but the easiest way is usually to declare the struct in C# using the StructLayout attribute on it to make sure all of the fields align.

I'm not aware of a single all-encompassing resource for doing this (that doesn't mean it doesn't exist, just that I don't know about it) but there is a lot of info on MSDN about doing this.

link|improve this answer
That answers the aside, but what about the question? The reason I ask is that I need to P/Invoke some functions from in-house dll's. – BlueRaja - Danny Pflughoeft Jun 25 '10 at 16:45
I only answer asides. Well, ok, I've edited my answer. – Steve Dennis Jun 25 '10 at 16:52
feedback

Another pinvoker tool for Visual studio

http://www.pinvoker.com/

And another tool which converts a given unmanaged set of files and generates a managed dll:

http://www.paulyao.com/res/pinvoke/pinvoke.aspx

Finally, if you don't want to download any tools you can always refer to the pinvoke.net online reference for all the unmanaged libraries to get the pinvoke / marshal as definitions:

http://www.pinvoke.net/default.aspx/kernel32.waitforsingleobject

link|improve this answer
feedback

Although this MSDN page is titled "Default Marshaling Behavior", it covers explicit marshaling too. For instance the "Default Marshaling for Arrays" subsection is pretty detailed.

http://msdn.microsoft.com/en-us/library/zah6xy75.aspx

"Marshaling Data with Platform Invoke" also has lots of information:

http://msdn.microsoft.com/en-us/library/fzhhdwae.aspx

link|improve this answer
feedback

I like the interop assistant. Give it your declaration (of function or type - you need the type if it's a parameter to the function) and it gives you VB or C# code.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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