API Viewer for C#?
-
Hello all! I am a VB developer and I used API Viewer. I would like to know if Visual Studio .NET 2003 have a similar tool ?:confused: Thanks for all, Alexsander "Axia" Antunes
-
Hello all! I am a VB developer and I used API Viewer. I would like to know if Visual Studio .NET 2003 have a similar tool ?:confused: Thanks for all, Alexsander "Axia" Antunes
The API Viewer just displayed some of the Win32 functions in VB form once it was supplied a text file. So far, no tools have been written that do something similar for any .NET languages (to my knowledge). Some Microsoft employees have discussed this idea (via their blogs) of creating a tool, however it has been deemed too time consuming. If you are using C# (I am assuming this since you are in the C# forum) you will need to P/Invoke the Win32 method signatures to call them from C#, VB.NET or any .NET language in particular. Read into the DllImportAttribute Class[^] for more information. - Nick Parker
My Blog