Interfacing with Windows Shell

G

Guest

If I am developing a system level application, interfacing with the windows
shell, what are the pros and cons of using VC++ V6 vs. c++.NET or the other
..NET languages?

Also is there a website or a book that can give me the WIN32 api's that were
translated into the .NET Framework. In other words I need the classes and
functions in the framework for the win32 api's I had under version 6.


Thanks in advance..
 
M

Mattias Sjögren

If I am developing a system level application, interfacing with the windows
shell, what are the pros and cons of using VC++ V6 vs. c++.NET or the other
.NET languages?

It should be easier to do in C++ than other languages (assuming you
know C++) since the APIs don't have to be declared/translated, you
just have to include the appropriate header file.

Whether you should use managed or native code depends on if you need
any functionality in the BCL or other managed library or not.

Also is there a website or a book that can give me the WIN32 api's that were
translated into the .NET Framework. In other words I need the classes and
functions in the framework for the win32 api's I had under version 6.

Here's a good start

http://msdn.microsoft.com/library/en-us/dndotnet/html/win32map.asp


Mattias
 

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