Where can I find tutorials to learn C#?

Go to tutsplus.com. Last month they launched a full dedicated series for beginners who wanna learn C#.
 
your right in choosing c# it is probably a better choice if you know nothing but will be harder to learn, vb is easier to pick up as its more like normal language

an example is adding 1 to a variable rather simple but far less code in c#

vb code - var = var + 1
c# code - var++

if statements can be confusing especially when you start comparing things (just lookup =, == and ===) BUT once you pick it up you will be able to read some javascript/php/c++ etc as they are similar

think you can still download M$ c# complier for free (not full dev studio) and get going with some of the samples round there.

I always found thinking about what i want to do then just start getting stuck in, googling when I need to work out wtf the difference between =, == & === is for instance! lol

good luck
 
try w3school or use youtube to learn the language tutorials ...bdw you can consult some expert on different forums as well
 
Here ya go mate

Code:
http://thenewboston.org/list.php?cat=15
 
I learn it during my school days to tell you they only teach basic stuff so studying on internet is depend on your will to learn and study in school is for the grades you might get. but I learn more on self study there are some website that offer free tutorial much better if you have e book for C# fundamentals or for beginners
 
Great you are learning this. I started to learn c# since this week in school. I am doing some tutorials atm from the microsoft site. My end goal is to make a calculator :)
 
I usually Google for free books and use youtube if something is confusing and I need to see it done. Just a thought :)
 
You guys are awesome! I got great information to start with. I really appreciate it.
 
The best tutorial is to choose some target app to write and start doing it :)
If u do not know sth then just google it.

It is really great method


Good luck!
 
You can buy C# video tutorials from cbtnuggets.com or lynda.com, or you can get them from thepiratebay.se or demonoid.ph
 
learning C# is one thing, but just learning syntax doesn't mean you're able to code the right way... First learn Object Oriented Programming with C# before diving in to just syntax.
 
Back
Top