Regarding memory management, C# (well the CLR, the underlying common language runtime that all .Net languages sit on top of) is garbage collected the same as PHP, so the learning curve may not be as steep as you think in that regard, C# is not like C++
The key issue is probably getting a good understanding of OO fundamentals, often you can survive in PHP with little knowledge of objects, inheritance, contracts etc. - or certainly to a lesser extent then in a language like C# or Java.
I've introduced some friends to .Net development via the Express edition of products, which gives you a free development environment.
Take a look at the VS2008 Express Site - download the environment - and then watch the Introductory Video and also check out the Beginner Developer Learning Center on MSDN which has links to other useful resources (MSDN is the Microsoft developers network, a useful resource for developers starting out on the Microsoft platform).
Beyond that the C# corner as mentioned by Paul are good - there's also loads of other sites with similar tutorial content for beginners such as c# station - just do a quick google search for "C# beginner tutorials".
Hope this helps start you down the path to becoming a .Net developer!