vote up 4 vote down star
4

We have a team of Delphi developers at work who need to get up to speed and start coding in C#. We've been asked to describe how we learned C#. I can't quite figure out how I learned. My only recommendation has been to check out

MSDN Beginner Developer Learning Center

Scott Gu's Blog

and to pick up this book: C# 3.0 Pocket Reference

Any other suggestions?

flag

what version of Delphi? and which .net? – John Nolan Sep 16 '08 at 14:56

17 Answers

vote up 6 vote down check

You should specify whether their primary need will be for WinForms (applications) or ASP.Net (websites) - or both, and it also depends on what other technologies you're going to be using - there's a lot of stuff out there now.

The best way to learn is doing.

Even if they're learning as they knock out production code, they should maintain their own sandbox or playpen projects for trying stuff out.

If they have some 'official' learning time set aside, rather than just use a book or a blog or whatever, choose some minimalist project to implement. Then enhance it until done, or chose another project with a different focus.Obviously this would be tailored to suit whatever they're likely to work on first.

e.g.

  1. Build me a hello world website.
  2. Link to other pages using the <a href> tag and the linkbutton control
  3. Inherit from a master page which shows a menu
  4. Implement a form which reads from and posts to a database, explore PostBack
  5. Implement a sitemap
  6. Add authentication using the ASP.Net 2.0 Role and Membership providers
  7. etc. etc.
link|flag
They will mostly be doing winforms. – Elmo Gallen Sep 16 '08 at 18:02
This is one of those questions that has no "right" answer, but as I tend to agree most with "The best way to learn is doing" I think I'll accept this as the answer. – Elmo Gallen Sep 17 '08 at 20:23
vote up 4 vote down

Head First C# is a good book to get someone up to speed quickly.

link|flag
I find the Head First programming language books to be for the novice programmer - if you are an experienced programmer, these are a tad too simple. – Oded Sep 16 '08 at 15:49
vote up 0 vote down

It depends on their backgrounds. For me, I had somewhat of an OO background, as well as some functional programming. I quickly read through the Headfirst C# book, because I knew it would be entertaining and an easy read, and I was able to get up to speed in no time. Still, there are parts of that that I wouldn't have been able to breeze through with a different background, so it's only one idea.

link|flag
vote up 0 vote down

I would suggest start with a console applications as this removes may of the issues found in windows forms and web apps and allows you to focus on the syntax.

One once you have mastered the syntax then move on to winforms or webapps.

link|flag
vote up 1 vote down

I started with O'Reilly's Programming C#

link|flag
vote up 0 vote down

I've always been a fan of learning via the microsoft press step by step books. I learned C# using the 2005 book, but today certainly I would recommend the 2008 version

link|flag
vote up 1 vote down

C# In a Nutshell is an awesome book and a great reference. Highly recommended.

link|flag
Yeah, C# in a Nutshell is from the same authors as the C# 3.0 Pocket Reference. – Elmo Gallen Sep 16 '08 at 14:34
vote up 1 vote down

Depends on their background, but I took a week and read a book - I think it was Pro C# 2005 and the .Net 2.0 Platform by Troelsen. I wrote a bunch of apps, asked questions online, read some more, etc.

Mostly, I learned by doing.

link|flag
vote up 2 vote down

Though it is out of date by now and doesn't cover the 2.0 or 3.0 language features, C# Class Design Handbook is excellent.

link|flag
vote up 1 vote down

I have a C++ background.

I read:

"Applied Microsoft .NET Framework Programming" (Jeff Richter)

"Programming Microsoft .NET" (Jeff Prosise)

then answered loads of questions on CodeProject's C# forum, and read a lot of Microsoft blogs.

The second edition of Richter's book is named "CLR via C#".

link|flag
good comment for experienced c++/java programmer. – Yin Zhu Dec 6 at 2:57
vote up 1 vote down

It's definitely not for everyone, but I went through a 3 month training course at a school called SetFocus.

link|flag
vote up 0 vote down

Invite someone who is knowledgeable in C# and arrange a coding dojo. Dojos and other group practice sessions are really useful for picking up new techniques and languages in my opinion.

link|flag
vote up 1 vote down

If you learn visually then "Illustrated C# 2008" (Daniel Solis) may be good for you.

link|flag
vote up 0 vote down

How about Charles Petzold's .NET Book Zero (http://www.charlespetzold.com/dotnet/)?

link|flag
Not that useful to these guys. They have Delphi experience -- not C experience. – Elmo Gallen Sep 16 '08 at 18:03
vote up 0 vote down

If you're already familiar with C# syntax (and by familiar, I mean you understand C++ or JavaScript), IntelliSense is your friend. A lot of my early learning with C# started with creating a new project in Visual Studio .NET, and then typing "System." and browsing what came up. Find an interesting class? Instantiate it and see what methods are available. The .NET Framework's naming of classes and methods is generally good enough that you can get a pretty good idea what things do just by seeing the names.

If you're curious, tap F1 and check the help.

This method works great for some people, books work great for others.

link|flag
vote up 3 vote down

Books are all well and good, but I find that tutorials and code samples promote better retention. Scott Mitchell (one of the 4 Guys From Rolla) has an excellent set of 75 tutorials at ASP.Net. Each tutorial builds on the previous one and, in addition to being a good example of C# OO design, the tutorials are an excellent primer on the .Net 2.0 framework.

link|flag
vote up 0 vote down

Hire a trainer for a one-week boot camp. Here in Seattle I would talk to Dennis Sosnoski. BTW, learning the language is a piece of cake for anyone who has a C/C++/Java background. The real challenge is learning the .NET framework.

link|flag

Your Answer

Get an OpenID
or

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