473,508 Members | 2,011 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Good books about .NET and C#?

Hello!

I am a software developer with 5+ years of C++ experience and VB
experience since version 1.0 until 6.0. I would like to learn more
about C# and .NET framework. I have some VB.NET, C++/CLI and C#
experience. So far the books I have come accross start with basics
like "writing loops" and "how to use IDE" and stuff like that. I
don't care about books like that. Is there any books that don't
assume the reader is complete beginner? Something that would go in
depth about the language? And something about common idioms and
programming styles of C#? Is there a FAQ of this newsgroup? Any
suggestions?

Thanks,
Ahti Legonkov
Feb 3 '06 #1
15 1465
Professional C# (Simon Robinson: Wrox)

would be good. You can skim thru the earlier chapters as you already know
the fundamentals.
--
Thanks
Vipul Patel
C# MVP www.microsoft.com/mvp
Log bugs at http://msdn.microsoft.com/productfeedback
"Ahti Legonkov" <le**@hot.ee> wrote in message
news:%2****************@TK2MSFTNGP14.phx.gbl...
Hello!

I am a software developer with 5+ years of C++ experience and VB
experience since version 1.0 until 6.0. I would like to learn more
about C# and .NET framework. I have some VB.NET, C++/CLI and C#
experience. So far the books I have come accross start with basics
like "writing loops" and "how to use IDE" and stuff like that. I
don't care about books like that. Is there any books that don't
assume the reader is complete beginner? Something that would go in
depth about the language? And something about common idioms and
programming styles of C#? Is there a FAQ of this newsgroup? Any
suggestions?

Thanks,
Ahti Legonkov

Feb 3 '06 #2
Hi Ahti,
You may want to take a look at some of Jesse Liberty's books, check
amazon or the o'reily site for more info. I too came to C#/.NET with
some previous programming experience and found his books quite nice.

Cheers,
Esmail
Feb 3 '06 #3
Ahti Legonkov <le**@hot.ee> wrote:
I am a software developer with 5+ years of C++ experience and VB
experience since version 1.0 until 6.0. I would like to learn more
about C# and .NET framework. I have some VB.NET, C++/CLI and C#
experience. So far the books I have come accross start with basics
like "writing loops" and "how to use IDE" and stuff like that. I
don't care about books like that. Is there any books that don't
assume the reader is complete beginner? Something that would go in
depth about the language? And something about common idioms and
programming styles of C#? Is there a FAQ of this newsgroup? Any
suggestions?


A couple of FAQs:
http://www.pobox.com/~skeet/csharp/faq
http://blogs.msdn.com/csharpfaq/

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet Blog: http://www.msmvps.com/jon.skeet
If replying to the group, please do not mail me too
Feb 3 '06 #4
I don't want to retype all my reviews...
http://www.kynosarges.de/DevBooks.html#Net2Books
http://www.kynosarges.de/DevBooks.html#Net1Books

You absolutely need Jeff Richter's "Applied Microsoft .NET Framework
Programming"; however, there's a new edition coming out shortly that
covers .NET 2.0 so you might want to wait for that.

For C# 2.0 specifically, "A Programmer’s Introduction to C# 2.0" by
Gunnerson & Wienholt is decent, but has numerous minor errors.
--
http://www.kynosarges.de
Feb 3 '06 #5

"Ahti Legonkov" <le**@hot.ee> wrote in message
news:%2****************@TK2MSFTNGP14.phx.gbl...
Hello!

I am a software developer with 5+ years of C++ experience and VB
experience since version 1.0 until 6.0. I would like to learn more
about C# and .NET framework. I have some VB.NET, C++/CLI and C#
experience. So far the books I have come accross start with basics
like "writing loops" and "how to use IDE" and stuff like that. I
don't care about books like that. Is there any books that don't
assume the reader is complete beginner? Something that would go in
depth about the language? And something about common idioms and
programming styles of C#? Is there a FAQ of this newsgroup? Any
suggestions?

Thanks,
Ahti Legonkov


I find that any book that claims to be about C# will be too basic as they
all try to cover both the language and the entire framework,ADO.NET,ASP.NET
and advanced fly-fishing.

You are better of getting a book that covers a specific area such as forms
programming, ASP.NET or ADO.NET using C#. These will usually provide enough
C# info for someone with your background and the examples will be real world
rather than artificial.

I found "Windows Forms Programming in C#" by Chris Sells to be most useful
when learning since in the course of describing how to do stuff with forms
he delves into attributes,XML,ADO,remoting,reflection and many more areas.
Feb 3 '06 #6
Hi Ahti,
I would personally recommend that you read "Pro C# 2005 and the .Net 2.0
Platform" by Andrew Troelsen. This book covers most important areas of C#
covering from language fundanentals (not wasting time on what is a for loop
kind of thing) but the important keywords for C# then he moves on to .net
assemblies, databases, gui programming, threading plus a lot more. as well
he covers most of the new topics for the 2.0 release of .Net.

The writing style is very fluent and he seems to be able to find all of the
interesting parts of each section of the language to talk about in more
detail. definitely worth a read.

Hope that helps
Mark Dawson
http://www.markdawson.org


"Ahti Legonkov" wrote:
Hello!

I am a software developer with 5+ years of C++ experience and VB
experience since version 1.0 until 6.0. I would like to learn more
about C# and .NET framework. I have some VB.NET, C++/CLI and C#
experience. So far the books I have come accross start with basics
like "writing loops" and "how to use IDE" and stuff like that. I
don't care about books like that. Is there any books that don't
assume the reader is complete beginner? Something that would go in
depth about the language? And something about common idioms and
programming styles of C#? Is there a FAQ of this newsgroup? Any
suggestions?

Thanks,
Ahti Legonkov

Feb 3 '06 #7
I was just about to reply to Ahti with the same suggestion. So instead of
duplicating your suggestion, let me just say that I concur with it. It's a
great book.

Oh, and if you get it soon, APress has a free e-book download of the book as
well.
--
Dale Preston
MCAD C#
MCSE, MCDBA
"Mark R. Dawson" wrote:
Hi Ahti,
I would personally recommend that you read "Pro C# 2005 and the .Net 2.0
Platform" by Andrew Troelsen. This book covers most important areas of C#
covering from language fundanentals (not wasting time on what is a for loop
kind of thing) but the important keywords for C# then he moves on to .net
assemblies, databases, gui programming, threading plus a lot more. as well
he covers most of the new topics for the 2.0 release of .Net.

The writing style is very fluent and he seems to be able to find all of the
interesting parts of each section of the language to talk about in more
detail. definitely worth a read.

Hope that helps
Mark Dawson
http://www.markdawson.org


"Ahti Legonkov" wrote:
Hello!

I am a software developer with 5+ years of C++ experience and VB
experience since version 1.0 until 6.0. I would like to learn more
about C# and .NET framework. I have some VB.NET, C++/CLI and C#
experience. So far the books I have come accross start with basics
like "writing loops" and "how to use IDE" and stuff like that. I
don't care about books like that. Is there any books that don't
assume the reader is complete beginner? Something that would go in
depth about the language? And something about common idioms and
programming styles of C#? Is there a FAQ of this newsgroup? Any
suggestions?

Thanks,
Ahti Legonkov

Feb 3 '06 #8
Nick Hounsome <nh***@nickhounsome.me.uk> wrote:
I find that any book that claims to be about C# will be too basic as they
all try to cover both the language and the entire framework,ADO.NET,ASP.NET
and advanced fly-fishing.


<snip>

You're right that this is a problem. I haven't found many books which
are really about *just* C#.

There's one I *will* be recommending when it comes out, but I'm not
sure I'm allowed to do so just yet. Sorry about how this appears - I'm
well aware it doesn't put me in a good light - but I wanted to give you
hope of a good book in the future, partly so that you might remind me
every so often that I'm going to make the recommendation :)

(Oh and no - I didn't write it, just reviewed bits.)

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet Blog: http://www.msmvps.com/jon.skeet
If replying to the group, please do not mail me too
Feb 3 '06 #9
Jon Skeet [C# MVP] wrote:

There's one I *will* be recommending when it comes out, but I'm not
sure I'm allowed to do so just yet. Sorry about how this appears - I'm
well aware it doesn't put me in a good light - but I wanted to give you
hope of a good book in the future,


Hi Jon,

can you give us an idea (ballpark is ok) when this book might
be published?

thanks,
Esmail
Feb 3 '06 #10
Esmail Bonakarian <eb****@athotmail.com> wrote:
There's one I *will* be recommending when it comes out, but I'm not
sure I'm allowed to do so just yet. Sorry about how this appears - I'm
well aware it doesn't put me in a good light - but I wanted to give you
hope of a good book in the future,


can you give us an idea (ballpark is ok) when this book might
be published?


I'll check with the publisher and get back to you.

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet Blog: http://www.msmvps.com/jon.skeet
If replying to the group, please do not mail me too
Feb 4 '06 #11
Hi Ahti,

I am with Mark and Dale on "Pro C# 2005 and the .Net 2.0 Platform" by Andrew
Troelsen.
Coming from Java, and C before it, I myself was looking for a book meeting
your description. I spent about 3 weeks reading reviews on the web and
visiting pretty much every single bookstore with tech books in my area. I
decided then to get Troelsen's book and I am very glad I did. It assumes
some previous general programming experience. The author goes through
assuming you'll work on VS2005 but assures you that every code sample in the
book can be worked without IDE. I recommend this book as a programmer's
start to C# and .NET, but I suspect one, inluding myself, would need to get
separate books and/or read advanced articles on the web focusing more deeply
on individual aspects of the platform.

Hope this helps.
--
csn

"Ahti Legonkov" <le**@hot.ee> wrote in message
news:%2****************@TK2MSFTNGP14.phx.gbl...
Hello!

I am a software developer with 5+ years of C++ experience and VB
experience since version 1.0 until 6.0. I would like to learn more
about C# and .NET framework. I have some VB.NET, C++/CLI and C#
experience. So far the books I have come accross start with basics
like "writing loops" and "how to use IDE" and stuff like that. I
don't care about books like that. Is there any books that don't
assume the reader is complete beginner? Something that would go in
depth about the language? And something about common idioms and
programming styles of C#? Is there a FAQ of this newsgroup? Any
suggestions?

Thanks,
Ahti Legonkov


Feb 4 '06 #12
Jon Skeet [C# MVP] wrote:
can you give us an idea (ballpark is ok) when this book might
be published?

I'll check with the publisher and get back to you.


cool, thanks!

esmail
Feb 5 '06 #13
Jon Skeet [C# MVP] <sk***@pobox.com> wrote:
Esmail Bonakarian <eb****@athotmail.com> wrote:
There's one I *will* be recommending when it comes out, but I'm not
sure I'm allowed to do so just yet. Sorry about how this appears - I'm
well aware it doesn't put me in a good light - but I wanted to give you
hope of a good book in the future,


can you give us an idea (ballpark is ok) when this book might
be published?


I'll check with the publisher and get back to you.


I've checked, and I'm allowed to advertise :)

I haven't read *all* of it, but what I *have* read of "Essential C#" by
Mark Michaelis is great. It's a heavily C# book rather than a .NET
framework book, only really tackling the framework for things like
reflection and threading, which is fine IMO.

It should be published in June/July. ISBN: 0321150775

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet Blog: http://www.msmvps.com/jon.skeet
If replying to the group, please do not mail me too
Feb 6 '06 #15
I've checked, and I'm allowed to advertise :)

I haven't read *all* of it, but what I *have* read of "Essential C#" by
Mark Michaelis is great. It's a heavily C# book rather than a .NET
framework book, only really tackling the framework for things like
reflection and threading, which is fine IMO.

It should be published in June/July. ISBN: 0321150775


thanks Jon, appreciate the info.

For others interested, amazon has a page for it already which
popped up readily when I searched based on ISBN.

cheers,

Esmail
Feb 7 '06 #16

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

8
2073
by: Lennart | last post by:
Hi everybody, Can someone advice me with the following issue: i want to learn python in my summer vacation (i try to ...:-) So, a good start is buying a good book. But wich? There are many ... ...
7
5239
by: tada991 | last post by:
Hello Everyone, I just purchased Visual Studio .Net Architect 2003 and want to know what's a good book for begginers to start with. I know nothing about programming whatsoever, but I do have a...
7
1951
by: MiniStreak | last post by:
Hi fellow programmers................... I am trying to learn ASP .NET ver 1.1 using VB .NET only on a windows 200 Pro machine. I have done quite a bit with ASP 3 but have been off programming...
6
1619
by: Christoph | last post by:
I was browsing both the Amazon and Barnes & Noble websites looking for some good books but there appears to be *so* many and it's hard to tell which are going to be good or not. I'm looking for...
7
1710
by: boostngti via DotNetMonster.com | last post by:
I have 4 years of programing exp. with Coldfusion, and I am begining to learn ASP.NET C# and was wondering if some people could suggest some good books. I went to Barnes & Noble the other day...
2
4135
by: Someonekicked | last post by:
This is my first Database course, and we are going to have two projects in oracle (which I know nothing about). The professor suggested (1) Oracle 9i Programming: A Primer (Paperback) by...
13
2079
by: arnuld | last post by:
i see C FAQs are very important part of learning C. whole C FAQs are available as a book (1st edition) in my area at a little cost. is it a good idea to purchase C FAQs book, published in 1996 ?...
9
2652
by: Katie Tam | last post by:
I am new to this filed and begin to learn this langague. Can you tell me the good books to start with ? Katie Tam Network administrator http://www.linkwaves.com/main.asp...
2
1991
by: SF | last post by:
Hi, I have done some coding with Access and I want to try using VB.NET. I am looking for a good book with examples specially on data access (database). Could someone in this group recommend? ...
76
3964
by: lorlarz | last post by:
Crockford's JavaScript, The Good Parts (a book review). This shall perhaps be the world's shortest book review (for one of the world's shortests books). I like Douglas Crockford (because I am a...
0
7226
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
7328
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
7388
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
1
7049
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
4709
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
3199
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
3186
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
1561
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...
1
767
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.