Book on C# for C++ developers...

  • Thread starter Thread starter DeanB
  • Start date Start date
D

DeanB

Hello all,

I'm looking for a decent book that introduces C# to a (reasonably
experienced) C++ developer. Prefer compiler-independent, though I will
be using MS compilers for the most part. (Prefer concise and to the
point, not a Stroustrup equivalent!)

Thanks for any tips!

Dean
 
DeanB said:
I'm looking for a decent book that introduces C# to a (reasonably
experienced) C++ developer. Prefer compiler-independent, though I will
be using MS compilers for the most part. (Prefer concise and to the
point, not a Stroustrup equivalent!)

"Professional C#" from Wrox maybe.

Arne
 
Arne Vajhøj said:
"Professional C#" from Wrox maybe.

Arne

That's the one I'm using, and is designed for exactly this purpose. It
discusses C# features with comparison to C++ and Java equivalents. The VS
help system is also very well set up for helping people move from C++, Java
or VB, as all the .NET examples are given in all four languages, so you can
easily see what maps to what.
 
I'm looking for a decent book that introduces C# to a (reasonably
experienced) C++ developer. Prefer compiler-independent, though I will
be using MS compilers for the most part. (Prefer concise and to the
point, not a Stroustrup equivalent!)

I'm currently working my way through C# 3.0 In a Nutshell. It's not a
bad book and is quick to reach the point.

When I first started using C# I read Programming C# (O'Reilly). That
covered all of the language but is a little verbose.

The C# Programming Language is comprehensive but I have only seen
copies covering version 2 of the language. This can be a little
difficult to read in places.

Hope this helps,
Mark
--
|\ _,,,---,,_ A picture used to be worth a
ZZZzzz /,`.-'`' -. ;-;;, thousand words - then along
|,4- ) )-,_. ,\ ( `'-' came television!
'---''(_/--' `-'\_)

Mark Stevens (mark at thepcsite fullstop co fullstop uk)

This message is provided "as is".
 
DeanB said:
I'm looking for a decent book that introduces C# to a (reasonably
experienced) C++ developer. Prefer compiler-independent, though I will
be using MS compilers for the most part. (Prefer concise and to the
point, not a Stroustrup equivalent!)

One thing to note alongside the recommendations is that there's *very*
little in C# which is "compiler dependent" - the specification is
pretty clear on most things, leaving relatively little up to the
compiler, in terms of observable differences. (Some of the features of
C# 2 and 3 leave quite a lot of flexibility, but usually in a way which
can't be easily noticed.)
 
Back
Top