vote up 1 vote down star
1

Possible Duplicate:
Best way to learn C#

Duplicate:
http://stackoverflow.com/questions/287927/best-way-to-learn-c
http://stackoverflow.com/questions/72893/whats-the-best-way-to-learn-c-quickly
http://stackoverflow.com/questions/319441/the-fastest-way-to-learn-c-closed
http://stackoverflow.com/questions/5795/recommended-books-for-learning-c
http://stackoverflow.com/questions/561481/learning-c

What would be a good point for me to learn C#, besides the C# documentation? I am familiar with OOP and have solid experience with AS3 and PHP.

Would you recommend tutorial websites? Books? Videos? Any suggestion is welcome!

flag

2  
msdn.microsoft.com/en-us/vcsharp/… – o.k.w Oct 27 at 12:30
2  
stackoverflow.com/questions/477748/… – aJ Oct 27 at 12:30

closed as exact duplicate by Jason Punyon, aJ, Jim Ferrans, SilentGhost, cletus Oct 29 at 2:13

6 Answers

vote up 5 vote down check

Here my advice: CLR via C# 2d edition

If you not familiar with c# and .net at all then try Pro C# 2008 and the .NET 3.5 Platform

UPDATE:

Anyway the best way to learn language is use it :-) Consider participation in an opensource project. Or start your own.

link|flag
CLR via C# is probably not the best place to start for someone who hasn't used a similar language- it is quite an advanced book. The Pro C# 2008 and .NET 3.5 Platform book is definitely good for a beginner. It covers pretty much everything, albeit with not much depth – RichardOD Oct 27 at 12:31
Broken link to CLR – JL Oct 27 at 12:32
@JL microsoft.com/learning/en/… all works fine – Trickster Oct 27 at 12:33
@RichardOD that is why i gave advice to start with Pro C# 2008 and the .NET 3.5 Platform – Trickster Oct 27 at 12:34
vote up 3 vote down

The C# Developer Center. Then http://www.asp.net/ or http://windowsclient.net/ if you plan to develop ASP.NET / windows forms applications.

link|flag
+1. You beat me to all the suggestions I had. – David Stratton Oct 27 at 12:32
vote up 2 vote down

download the express editions, and watch some primers on 3 tier thinking, where you have 3 distinct layers in your applications.

  • Presentation
  • Business Logic
  • Data Access

You could try apply these principles from the start because you already have good solid programming experience.

A not so bad place to start is www.asp.net, lots of tutorials on there.

link|flag
vote up 1 vote down

I found The C# programming language By Anders Hejlsberg, Scott Wiltamuth, Peter Golde very useful...

Book

link|flag
vote up 0 vote down

Maybe take a look at the beginner developer center from MSDN.

There is a course on the Microsoft Learning Center called ASP.Net for PHP developers.

Also I'd check out the MSDN virtual labs there's labs there for C# and ASP.Net.

I'd also second Trickster on the book recommendation I came to C# from Java using a previous edition of that book.

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.