I recently needed to find the .NET equivalent to ShellExecute, and I was happily able to find the answer quickly at StackOverflow. But surely there must be document or a list somewhere which would have given me this answer just a little quicker.
Back when I went from ANSI programming to UNICODE, Microsoft had this handy page of routine mappings:
http://msdn.microsoft.com/en-us/library/Aa272889
I put some of it into a text file, and when I needed to know, say, the Unicode equivalent of strlen, I'd just grep the file for strlen and I'd get:
C:\> grep strlen textfuncs.txt
strlen _tcsclen
strlen _tsclen
Does anyone have, or know of, a list like that for Win32 -> .NET?