API list on dotnet.

M

Mr. X.

On VB-6 there was a file that has a list of all Windows' API functions (+
types),
called API viewer (something like that).

It was pretty nice, indeed,
including abilities to copy + paste the whole function declaration to VB.

but I didn't see it at all on VB.NET.
Does someone know - where can I find such a file for VB.NET (or C#, whatever
....)

Thanks :)
 
A

Armin Zingler

Am 28.06.2010 19:23, schrieb Mr. X.:
On VB-6 there was a file that has a list of all Windows' API functions (+
types),
called API viewer (something like that).

It was pretty nice, indeed,
including abilities to copy + paste the whole function declaration to VB.

but I didn't see it at all on VB.NET.
Does someone know - where can I find such a file for VB.NET (or C#, whatever
....)

There's no "built-in" replacement, but have a look at http://pinvoke.net
You should still double-check every declaration you use.
 
H

Herfried K. Wagner [MVP]

Am 28.06.2010 19:23, schrieb Mr. X.:
On VB-6 there was a file that has a list of all Windows' API functions
(+ types),
called API viewer (something like that).

It was pretty nice, indeed,
including abilities to copy + paste the whole function declaration to VB.

but I didn't see it at all on VB.NET.
Does someone know - where can I find such a file for VB.NET (or C#,
whatever ...)

Take a look at <URL:http://pinvoke.net/>. but be aware that this website
is community-driven and the declares aren't always correct.

A better approach is provided by the P/Invoke Interop Assistant, which
can be found at
<URL:http://clrinterop.codeplex.com/Release/ProjectReleases.aspx>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top