I am currently doing more "grunt work" at a software company that I work for, but was told that if I learned C# that I could start working more directly with the dev team. I was wondering what the best way to learn C# is. I have some experience with JavaScript and understand most of the basic programming concepts, but that is the extent of my knowledge.
|
marked as duplicate by spoon16 Nov 26 '08 at 6:58
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
Pretty much the only resource I turn to when learning a new technology is a good book (and Google of course). I don't work for O'Reilly, but for the most part, I find their books the most useful by far. Much better than "Learn Brain Surgery in 24 Hours!" or "Compiler Design for Dummies" type books. I also hate 900 page books that consist of 700 pages of code listings and screen shots. Most of the O'Reilly books are well written, no glitz, no color, and no rehashing of the reference materials (and distinctively cool woodcut animal drawings). Therefore, I would suggest Learning C# 3.0 or Programming C# 3.0. Or, if you want (or need) a beginner book (excellently written, but really for someone with little programming experience and it has glitzy drawings color and less text overall), Head First C#. While some things about the Head First series books bother me, I've actually learned quite a bit from them. NOTE: These links go straight to O'Reilly's pages and aren't associate links of any kind...
|
|||||||||||||||
|
|
Best way to get knowledge is to try to use it in practice. SO has a plenty of questions about C# books/sites/tutorials. Learning pattern is really simple: read a little bit of information on C# and try to write small program that uses this information. Don't try to understand the whole thing at once, grok it by small pieces and in a couple of weeks you'll get enough knowledge to write meaningful programs. |
|||
|
|
|
The "best" way is going to be subjective, however for me, having a concrete task is the best way for me to learn a language. After you have picked a task, googling will get you pretty far. |
|||
|
|
|
You can focus on specific technology that your dev team use (ASP.NET, WinForm, etc..). The C# language itself is not a big mystery. Starts with something easy, a small project for yourself. If you already familiar with OOP concept, then you're set to go. C# will be easy. If you're not familiar, I suggest you read some material on OOP first, and tackling C# afterwards. As with every programming language, or anything for that matter, learn by doing! A few starting point that you can use
|
|||
|
|
|
Never mind one kind of a book or the other, the only path to mastering something as complex as a programming language is simply doing it.. then do it some more... then stop having free time on weekdays, cause you have to do it... Kiss your weekends, weddings and parachuting, cause you've just got to do it...! This is of course based on my learning of C#; basically get thrown at it(and not the other way round) with nothing but contempt for programming after almost obtaining a bachelors degree in informatics, wich gave rufly the same qualification as a bucket of bricks ;-) But, it seems you've already entered the realm; pay no heed to those who say javascript and C# are different, they are instructions for a computer to do your bidding using much of the same logical structures and operators. As long as you're capable of some degree of mind, syntax and paradigmatical flexibility; having knowledge of one language probably account for nine tenths of the road to mastering a new one. Then, when the hook of C# has fastened it's grip(if it does), you'll scour for information here on SO, various blogs, some books and learning because you have to(and hopefully also because you really want to..) Well, |
|||
|
|
|
The best way to learn C# is to: 1.) Buy books. More than one from different authors and publishing groups. Practice the examples, even if they seem trivial at first. 2.) MSDN. Especially if you have access to the full library at your current job. Use it and dig deep. MSDN is not the best, but there is useful examples sometimes. You can check out the methods and object models, that is what MSDN helps me with most. 3.) Port your apps. That's right, in your spare time or extra time (is there such a thing?), try converting some of your older applications to C#. Whenever I was stuck writing VB I would always take time to port my apps to C#, just for my own piece of mind. There are tools to do this for you, but that's cheating. Doing it manually will help you learn the differences from VB to C# or whatever language you are coming from. 4.) Use it. Find excuses to write your utilities or small independent projects/resources for yourself in C#. I've worked at places where they do not want C# being written for core projects, but I always found time to make my own utilities in C#. Usually console apps. 5.) Console apps. Don't be afraid of them. You can test any type of functionality quickly with a console application, small or large. A good C# developer is not afraid of console applications, especially for prototyping. 6.) Learn C++ first. It will give you a better understanding of the C# syntax and rules. Regards, Devtron |
|||||
|
|
I'd put up a minor caution that there are a few different ways to use C# and that each has some minor quirks to it: 1) Web Development -> Here you would have the ASP.Net MVC framework as one idea as well as concepts like AJAX and the whole ASP.Net Page life cycle to learn. 2) Windows Applications -> So here you would have your own application with various windows to do various functions. 3) Console Application -> An application run from the command line that is a different UI than the previous one. Which of those end points is the dev team you want to work with using? It may be a combination of all 3 potentially and then there are other things like Class Libraries that some teams may make that are middleware to some extent. That would be my suggestion for a starting point as well as looking at the existing code base if possible. |
|||
|
|
|
The way i recommend is reading a book and doing experimental code as you go though the book, to sort of bootstrap yourself into the general mentality. I generally find I don't even finish the book, as once I work out the core concepts and learn where the API is and how to use it, you learn faster by just coding and learning from your mistakes. Sure, once you find yourself able to write semi-complicated programs with your rather elementary knowledge of the language, it might be time to finish reading the book, learn some more tricks, and then implement them. Which, as a whole, produces an iterative progression.
|
|||||||||
|
|
I would recommend that you download and watch as many tutorial videos from the asp.net website that you can if you want to learn C# in an ASP.NET context. I know people who have found them invaluable when first starting out. |
|||||||
|
|
Assuming you are a decent JavaScript programmer and have the basics down, learning the C# language should not be too difficult. All the books I've seen recommended here are excellent. However, the real value in C# is the .NET Framework. The .NET Framework is an extensive collection of well thought-out, well tested classes, and can save you from writing an enormous amount of code. The single biggest favor you can do for yourself is to learn the framework and use it. The .NET Framework 2.0 Poster Pack is available from amazon for less than $20 and can really help you get a feel for what sort of classes are available without going into too much detail and without having to wade through hundreds (or thousands) of pages. -Jason |
|||
|
|
|
JavaScript is a long, long way from C#. There are a LOT of differences, and a lot of the philosophy is VERY different. That said, it's not at all impossible to make the transition you're looking to make; just kinda tough. I'd recommend doing two things: find a C# book that you feel comfortable with, that speaks to your level of knowledge. You're going to want something very basic; most of the books out there assume that you have knowledge of object-oriented languages like Java or C++ (Javascript does NOT count on this, by the way). I don't know of any good books of that sort, but I'm sure a motivated search on Amazon will net you a few. Secondly, after going through the book extensively and working on its examples, you should start a small project for yourself. Pick something that you think is fun, that you'd like to get done, and implement it in C#. That will be, by far, the best experience that you can get at this. Mind you, this whole process will not be simple or quick; expect it to take a couple of months, and expect them to be a confusing as hell couple of months. This stuff isn't trivially simple, not by a long shot, and it can be difficult going. But if you're motivated and interested and have a certain knack, you can do it. Another option that bears consideration is getting professional training. See if there are any "intro to programming" courses at your local community college or university that you can enroll in, or even just audit. You'll want courses that are in C#, of course. And you WILL want "intro" courses; there's a lot of background knowledge and information that goes into proper coding with a good OO language like C#, and Javascript is not a great place to pick up on that information. Good luck! |
|||||
|
