vote up 3 vote down star

Hi

I'm new to C# and I don't have any programming experience. I just started 3 weeks ago. I would say it's quite complex. I really would like to learn this as fast as I can but I don't know how.

my boss asked me how are we going to deal with it, because he also wanted to help me but he don't know how.

I've started to watch the video tutorials which I found ok, but there are some parts that I haven't understand. The 16 videos tutorials I did it in 4 days. But I haven't really gone through the difficult ones, because my boss told me that I just have to see the whole view of it. I started to list notes too, which I think my boss didn't like because he thinks it eats a lot of my time.

For me, I learn something, if I take down notes. Now I'm on my third week in my apprenticeship, and my boss wanted to know how can I learn best.

I myself don't know either. Maybe you guys have any idea. Are there anybody here, started from scratch? How did you manage it? How long did you learn the language until you can do a little program?

I would appreciate any ideas and tips Thanks you very much

Regards tintincute

flag

Information about what you have studied might help. – Daniel Daranas Feb 19 at 13:42

11 Answers

vote up 21 vote down check

"I would like to learn this as fast as I can."

Sit back and relax, it's going to take at least a decade to turn you into anything like a competent software developer, assuming that's the route you're wanting to go down, and all the tutorials in the world aren't going to compensate for that.

You have to remember that becoming a good developer on some platform, say C# and .NET requires you to build skills in several areas:

  • The language (in this case C#)
  • The platform proper (in this case .NET)
  • Additional platform cruft (e.g. all the LINQ stuff, ADO .NET etc.)
  • General programming skills (requirements engineering and analysis, problem solving, software design, etc.)

The latter can be applied across multiple languages and platforms, of course; it all boils down to an interpretation of some common sense principles which will make your software actually behave in the way it was expected to, and maybe even do it efficiently.

Also, bear in mind that "programmer" and "software developer" (or "engineer") are two different things; there's a rather large gap between being able to hack together some implementation (however cool) in code versus being able to analyse an entire problem, architect and design a system and critically evaluate and improve that solution.

Since you have absolutely no experience programming, I'm going to echo the suggestions that you pick up one or two C# tutorials - maybe even a decent introductory book, but don't expect any of that to turn you into a superstar.

Once you're confident with the basics, and can write silly little applications, you can begin messing around with some of the more useful parts of .NET and the related technologies. Exactly which these are is going to depend somewhat on the kinds of applications you're going to want to be writing - for line-of-business applications, for instance, you're going to want to get some considerable experience writing database applications, and that means getting to grips with the myriad methods of doing so. In the process, you'll probably find yourself learning some basic database concepts, some SQL, etc.

At this stage, you are going to want to continue reading as much as you possibly can, not only about C# and .NET, but general software development topics; you may very well find your bookshelf growing a little. The idea is not simply to make you a brilliant C# hack, but to turn yourself slowly into something resembling a software developer. Gradually, you'll begin to develop a kind of flair for designing things in a manner which is consistent with others who develop for your platform; you'll begin to understand how to make an object-oriented design really shine, and you'll write better code.

Let's say that process takes you a few years. You'll eventually realise that while you might have a language, most of a platform and so on under your belt, and while you might be able to design something on the back of an envelope, while thumbing expertly through a well-marked set of reference materials...what you'll realise is that you're only just getting started.

The above is an idealised view of the process; in the real world, there is no time to cruise through from A to Z and pick it all up in a continuous process. Languages and platforms evolve, and requirements change so that you'll have to learn new ways of doing things; new intricacies of some database system, or new paradigms which allow you to more concisely express your ideas. For a good developer, it's impossible to get by on one language alone - on a day to day basis, you may only use one, but what you'll find is that understanding a different kind of language - say, something functional - gives you such a wealth of new approaches to a problem, your brain will almost certainly want to explode.

I'll stop here, before I turn this into something huge and horrible and resembling a Steve Yegge essay. This answer, while it looks big, is actually a terrible treatment of the subject matter - the whole field is so enormous, it would take a lifetime to write about every little nuance of it; and then, of course, you'd have to start all over when things changed.

link|flag
+1 for at least a decade. Software development is a rewarding career choice, but like any skill, it requires a great deal of time to master. I'm a little surprised that the leader in this apprenticeship doesn't seem to realize how much handholding will be req'd for these first couple of years. – Greg D Feb 19 at 12:47
What a great answer!!! Not only in content but in its writing. Hats off to you sir! – lexx Feb 19 at 13:02
wow this is a great answer! thanks for your uplifting words Rob. I'll take note of that. – tintincute Feb 19 at 16:29
@Greg, I'm not really sure, I always hear, that he wanted me to be on the right direction. If he sees, me that I'm working a lot, he quites complain & told me that I shouldn't delve on codes,but I have to understand the basic and the rest will come... – tintincute Feb 19 at 16:29
1  
@tintincute: Learning from books etc, is important, but it's also absolutely critical to learn by doing. Lessons learned by doing it wrong are much stronger. I still remember my most painful development mistakes that I made 10 years ago far better than the things I've simply read one year ago. :) – Greg D Feb 19 at 22:23
show 6 more comments
vote up 11 vote down

Buy a good C# intro book.

A lot of people will say the internet is better, but books are MUCH easier to reference and usually follow a logical order which builds on top of what you have previously learned.

link|flag
+1 for logical order and build-up, -1 for easier to reference. Books don't have search... :p – Svish Feb 19 at 13:22
"Books don't have search" - Index? – James Atkinson Feb 19 at 13:47
Indices are so... analog! ;) – Greg D Feb 19 at 14:22
vote up 6 vote down

I think investing in Head First C# might help you a lot. It's a good book that takes you through both OOP and C#. And it's interesting when compared to the other books, although not highly comprehensive.

link|flag
vote up 6 vote down

Learning to program is complex, and it takes time. Don't give up.

You wrote, "I learn something, if I take down notes". It's my favorite strategy too. I write kind of summaries of the important things. Many books and tutorials are filled with unnecessary smalltalk. You have to dig the essential points from there yourself.

An hour spent on taking notes is really much more useful than an hour spent just watching some videos. I'm sorry if your boss doesn't understand this.

It's also important to sit down and actually program. Start with something simple - the classic is Hello world. This way you'll start actually to understand the things instead of just memorizing.

link|flag
seconded the writing of notes. I don't even usually have to reference them again. The mere act of writing it burns the concept in my head. If your boss thinks your learning style is a waste of time, politely explain that's exactly how you learn best. – hometoast Feb 19 at 13:17
thanks hometoast.yeah,if he gave me a small tasks, and he says that i'm having a hard time, he usually make a comment on it.He said that I work a lot and takes time to understand the things which is not supposed to be. I'm not really sure what to do. – tintincute Feb 19 at 16:31
vote up 4 vote down

Nobody can learn with an obsessive compulsive taskmaster hovering over them and telling them they're doing it wrong.

You have to tell your boss to let you learn the way you learn. Is he going to stand over you when you write code and tell you "No! don't put that semi-colon there! That's wrong!"

link|flag
vote up 2 vote down

Tintincute: have you used the search? There is lots of stuff to find using search.
E.g. Learning c#

link|flag
hi Thank you very much for all your support. I appreciate all your inputs! yes I've tried search, but I don't know where to begin as there are many choices to make. I'll try the PDF file on the site you've given. Thanks a lot – tintincute Feb 19 at 16:22
You are welcome! Good luck. – Zaagmans Feb 19 at 19:54
vote up 2 vote down

Learn by doing. I don't think that there is a book/video in the world that can keep somebody's interest in programming and also be worth the time and money. Taking notes will help you, but you must work slowly on simple things to then build the skill.

I will tell you that the best resource for learning is probably the Internet. I recommend googling the following topics " + c#" to help you. A good approach is to attempt the following projects (it takes some time!), and learn by examining code that does exist on the web when you are stuck.

  1. Hello World is the first program you write. It announces "Hello World".
  2. Make a simple bank application that holds a balance value and then takes commands from the standard console (Console.ReadLine() I believe) to change the balance.
  3. Implement a simple card game. Think about how you want to store card values (hint hint: an enum might help).
  4. Learn about arrays. Make a maze game with a two-dimensional array or even try Conway's Game of Life. (A maze solver might use depth-first search -- again, these are all found on the web).
  5. When you are ready for GUIs (and you should give it a month first), take a crack at Tetris. All the shapes are rectangles, which simplifies it, but the controller logic is more difficult.

The most important thing is to find something you are interested in and do it -- you will learn lessons regardless of what comes out.

Also -- it takes 10 years to become a good programmer. I'm a little concerned that your boss is mandating this, as C# is a complex language to go head first into. I would recommend Python, which is much simpler and yet of comparable power.

link|flag
hi 1alstew1 yes it seems that he don't see it practical at the moment with a little disappointment.Last weekend while browsing with the new reference I've got,I realized that C# is really a complex language.And I start to wonder why he wants me to understand the "variable" in a week though... – tintincute Feb 23 at 16:38
..cont-he knows that I don't have any programming experience.*sigh* anyway, thanks for all your ideas here guys.I think I still give it a try until the end of the week.And I'll see – tintincute Feb 23 at 16:39
vote up 1 vote down

I've been there. My first programming job was PL/SQL and it was a nightmare, to say the least. The best way to learn programming is by programming. Try to program any idea that might crop up in your mind - Print characters, loop through arrays, read files and stuff. It will take time, but the feeling when you see your code working is wonderful. All the best!

link|flag
hey thanks. I will try to do that. I've seen a lot about C#, now due to its complication, I sometimes forget what an "object" is for. why we have to have that?, what are methods for, what are classes etc... But I'll really try to understand...thanks for the wishes – tintincute Feb 19 at 16:24
vote up 1 vote down

Like learning any skill there are many thing that you can do to help your self get along. Think about setting yourself small manageable goals that you can work towards. Think about the time you have at work and at home and plan learning sessions. Remember that breaks are important too. As soon as you start to loose interest and your mind starts to wonder you will find it much harder to learn anything.

I would suggest sitting down with your boss and set your learning objectives with him. He has an invested interest in increasing your skill level so I'm sure that he will be more than happy to help you set these goals. You might find that including him in this process will get him off your back a little bit. Being aware of your current skill level and what your next step is going to be will be beneficial to both of you.

Learning C# from scratch will probably seem like a daunting task right now but remember everyone has to start somewhere. Good luck :)

link|flag
vote up 1 vote down

Starting to learn C# by reading some good books is the best approach IMO. "Professional C#" by wrox and Deitel & Deitel's "C# How to Program" are great books. Also reading alone is not enough. You have to sit and utilize what the books are teaching you; Even if it's just the traditional and simple "Hello World", Typing the codes and compiling your code will help you become more familiar with the language. Also I suggest doing all the assignments when reading one of these books.

Learning to program takes time, But when you actually put the time and effort to learn it a beautiful new horizon will be revealed to you. Just try not to run before you can walk.

link|flag
vote up 0 vote down

If you have a good base of Object oriented programming you'll find that C# isn't that hard. It's very similar to Java. The Head First books are allways a good beginning, and also Beginning asp.net 3.5 in c# (2008) is a very good book. A book is allways the best way to learn. Try many examples and you'll learn along the way. And most important. Never give up!!

link|flag

Your Answer

Get an OpenID
or

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