Windows API in .NET

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is there a book or a site where they give you the equivalent functions in
..NET of the Windows API functions. There are several Windows API functions I
used in VB6 that I would like to use in DOTNET. I think microsoft posted at
one time on there msdn site but I can no longer find it. They had a link
where they gave all the window api's functions and constants and its
equivalent in .net classes.

thanks...
 
Is there a book or a site where they give you the equivalent functions in
.NET of the Windows API functions. There are several Windows API functions
I
used in VB6 that I would like to use in DOTNET. I think microsoft posted
at
one time on there msdn site but I can no longer find it. They had a link
where they gave all the window api's functions and constants and its
equivalent in .net classes.
You can use the Windows API functions via PInvoke. The PInvoke wiki
(http://www.pinvoke.net/) has an overview of all functions with C# and
VB.NET interop signatures.

Anders Norås
http://dotnetjunkies.com/weblog/anoras/
 
Back
Top