views:

427

answers:

13

How can I increase my proficiency in programming? I have a grasp of the basics of C#, but don't feel too confident about my ability.

+10  A: 
  • Code something in C#
  • Read C# Code and try to understand it.
  • Read a C# Book (and please none of the C# in 21 Days books)

The confidence comes with the experience.

Henrik P. Hessel
That is about it. A VERY good book is the one by Andrew Troelsen.
Martin
Whats your preferred book? (or website resource)
What the name of the book you mentioned? Still waiting for jon to finish his :)
Henrik P. Hessel
Martin, would you like to share which of Andrews book you are referring?
Maybe you should put your last sentence, about confidence, first and bold.
Dykam
as you wish ol' beans! ;)
Henrik P. Hessel
Pro C# 2008 and the .NET 3.5 Platform, Fourth Edition
Martin
+1  A: 

http://www.appdev.com/csharp.asp

:)

iersoy
AppDev SUCKS!!! (and is mucho expensive)
i dont think it sucks but its expensive thats true
iersoy
There are too many free resources to both with appdev. If there is a specific need, that it could be considered but in the context of this question, it doesn't quite fit (There are better solutions)
Frank V
+3  A: 

http://www.asp.net/LEARN/videos/

Voile, you are programing ASP.net.

Keep in mind that you may need a little more grasp on C# as your codes evolve. For that use a good book, most Microsoft's learn C# are pretty neat(The learn ASP.net is quite lame). Of course, thats what I did back then(about 2 years ago), nowadays you should be able to find some awesome tutorials online. Good luck ;)

Diones
Thanks Diones. I appreciate your help.
+5  A: 

Read Stack Overflow every day :)

Seriously. Try to solve interesting problems. Even if you don't post your solution, come back later and see if other people came up with something similar, why their solution might be different, etc.

Thorarin
Great idea Thorain. I appreciate your help.
+2  A: 

Think of a fun project of some complexity (more that "Hello, world") and code it.

Practice, practice, practice!

Also read forums, blogs, participate in discussions. You will learn many things that aren't even mentioned in books.

Developer Art
Thanks New. I appreciate your help.
+1  A: 

You say you are learning ASP.NET and C#. Have you ever done any programming or web development? Because, if you have not, then you need to take a step back and learn the basics of HTML, CSS and get a grasp of how data is passed via HTTP between client and server. I would also strongly advise getting a grounding in basic SQL, because most serious web development will utilise databases at some point.

After that, some basic OOP (Object-orientated programming) theory would do you good. That way you have a good grounding in the subject-matter before diving into the coding.

For learning C# the I'd suggest a couple of good tutorials:

The C# Station Tutorial and Softsteel Solutions C# tutorial.

I also found the ASP.NET Quickstarts useful when I was learning ASP.NET - I prefer to learn by example than by theory.

As for confidence, I'm afraid that only comes via experience. Perhaps try answering a few questions here? Getting a few up-votes might just give you that boost. Good luck.

Dan Diplo
Dan, I have vb experience
+4  A: 

Project Euler.

Greg Hewgill
+2  A: 

read lots of code, write lots of code and keep a copy of C# 3.0 in a nutshell handy.

Jeff Leonard
+2  A: 

Work on something, even if it's reinventing the wheel. You can read books, watch videos and listen to podcasts all day, but the real experience comes from actually building an application. Don't build an application that you know you can build - instead, create an application that is slightly out of your reach, then rinse and repeat.

The experience when you realize that you created a mess of spaghetti code that is unmaintainable cannot really be substituted, as this then really allows you to look into techniques to improve your code. Sure, feel free to read on MSDN about Events, Delegates and Lambdas, but reading about them in the moment you need them means that the knowledge really burns into your memory.

I try to have a rough knowledge about as many topics as possible, but that's usually rather shallow: I know that a technique exists and roughly what problem it solves, so that when I need it I can learn about it.

In my opinion, the only alternative to first-hand real world experience is even more first-hand real world experience.

Michael Stum
+2  A: 

Learn new programming languages. Learn data structures and algorithms and design patterns. Learn regular expressions. Learn databases. Learn HTML/XHTML/DOM. Learn learn learn learn learn.

In programming, knowledge === power.

Imagist
+1  A: 

This fits in to catagory of answers you've received thus far, but review open source projects.

Understand how they work and maybe even why they were put together in a given way. Not only will it improve your ability to write C# but it will also improve your understanding of Software Engineering which is ultimately how you put a programming language -- C# or otherwise -- to good use.

Frank V
+1  A: 

Creating a Project that makes use of a lot of different technologies is a good way to grasp a 'big picture' view.

As an example, think of an n-tier application where you input a value into a very simple web page, this value being sent into a web service, and behind that WS a simple business layer that switches between readings into a table of a data base, then you return the value finishing the output in a postback of the initial web page. In my Personal opinion, every element of the layer is a simple one, but, making the whole system work without errors is good beginner's challenge, that way you could build a confidence in your skills, enabling you to undertake any other idea.

Well, that were my two cents. Good Luck!

HJ42
A: 

Actively participate in programming (and non-programming) forums.

carpenteri