Good book for C# beginers

BufferOver

Senior Member
Joined
Mar 4, 2009
Messages
1,187
Reaction score
264
I want to start learning C#, my main goal is to build bots that can automate things like email creatinon, twitter creating follow/unfollow and simular task on different pages. Any good book to recomend me for a start?
 
If you want to start learning C#, just use google. Everything is there :) You don't really need a book.
 
Andrew Troelsen book helped me to learn this programming tool fast and easily when i started. it's written in a very simple noob friendly language and easy to understand.
 
I've really enjoyed O'Reilly Programming C#, 4th Edition. There are several good books out there about C# programming. Trying doing a google search on C# books and read the reviews from people. :D
 
i will sagest you for C# "Black Book is the best......... Cheers :)
 
Andrew Troelsen " C# and the .Net Platform " is the best
 
Last edited by a moderator:
I started with the book "Essential C# 2.0". At first I thought that maybe I had made a bad purchase since it didn't cover making windows forms, and the various visual controls, but now I realize that it is a great book to learn the basics of C#.

And for advanced stuff, you can find good tutorials, and code samples via web search that tends to lead you to codeproject.com, stackoverflow, and MSDN.

I wish you the best with your journey into programming land, it's a fun place :)
 
Books + Google for questions + a complete developpement studio like Visual Studio 2010 is very nice for begin.

A powerful studio like Visual Studio is useful because you have auto completion and good documentation.
 
I'm always a fan and highly recommend the Head First series for people getting into writing programs. So Head First would be a good starting ground for beginners.

If you already have experience programming then other suggestions like C# and the .Net Platform are good go-to's.
 
I think before start reading anything else you should install the visual studio and see it's options what is it offering and try to understand how you can work with it.
 
I found that the best way to learn programming is through example. Learning a new language is basically new syntax and features. But learning how to program is an entirely different matter. Try downloading open source projects and go through the code.
 
I'm always a fan and highly recommend the Head First series for people getting into writing programs. So Head First would be a good starting ground for beginners.

If you already have experience programming then other suggestions like C# and the .Net Platform are good go-to's.

I agree with FunkyWaltz, when diving into new languages I always start with the Head First series. Easy fun exercises to get you acquainted with the language before diving into more advanced books that will cover more advanced subjects such as automating web tasks.
 
C# black book is good. And none of the books will cover what you look for. You'll learn only language features and if you want to create bots, It's all about how do you use the "search". You need to know the basic concepts like opening a http connection, using post, get & similar things.
 
Hi,

If you want to start on C# I will highly recommend you to read "CLR via C# by Jeffrey Richter" it defines well how the CLR works and is a good reading for begginers to know about, it also relates about threading and parallel extensions in the later revisions, as others have recommended, "C# in Depth by Jon Skeet" is an excellent book.

You can easily find the pdf file with later revision of these books on google.
 
Microsoft Visual C# 2005 ,an introduction to object oriented programming ,
use this book ,you will be benefited,promise.
 
Anyone know if theres an interactive based program/site like Codeacademy but for C# and C++
 
Back
Top