Best way of learning the .NET library

  • Thread starter Thread starter Rubio
  • Start date Start date
R

Rubio

Like many developers, I can remember thousands of WinAPI functions and
MFC classes. Now, as I'm moving to .NET, I need to use the .NET
library instead. For example, suppose I want to know if a volume is
compressed. I know I can call GetVolumeInformation to obtain that
information. Knowing what I know now, how would I find out which class
to use in the .NET library? Are there lists of classes corresponding
to various WinAPI functions and MFC classes? It's taken me years to
build the knowledge I have now. Please, don't tell me I have to start
over.

Thanks,
-- Rubio

PS. Yes, I know I can still call the WinAPI functions.
 
Rubio said:
Like many developers, I can remember thousands of WinAPI functions and
MFC classes. Now, as I'm moving to .NET, I need to use the .NET
library instead. For example, suppose I want to know if a volume is
compressed. I know I can call GetVolumeInformation to obtain that
information. Knowing what I know now, how would I find out which class
to use in the .NET library? Are there lists of classes corresponding
to various WinAPI functions and MFC classes? It's taken me years to
build the knowledge I have now. Please, don't tell me I have to start
over.

Luckily, somebody at MS had a lot of time and created this:

http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dndotnet/html/win32map.asp

Cheers,
 
Wow! Unbelievably cool link! I didn't even know that was there. Now it's
in my favorites. Ken.
 
Back
Top