vote up 6 vote down star
2

There are a lot of resources that teach C# from the perspective of a C++ developer. Anyone know any resources that go the opposite route? From C# to C++ ? Books/articles/blogs/whatever.

Duplicate of this question.

flag

25% accept rate
This is a duplicate of stackoverflow.com/questions/68084/… – Leon Timmermans Oct 23 '08 at 16:05

closed as exact duplicate by Leon Timmermans Oct 23 '08 at 15:59

4 Answers

vote up 0 vote down

If you already know any C derivative all you really need is a syntax pocket book in my opinion, heres a link to the one I use O'Reilly Pocket Reference


Good luck with the arduous transition from a real OO language to a KOO (kinda Object Orientated) one ;)

link|flag
vote up 1 vote down

It probably has a lot to do with the fact that going from C# to C++ is a much more difficult journey than vice-versa. This is mostly because you're gaining responsibilities rather than having the runtime take them over. I would just look for any C++ tutorial that approaches the language from a programmer's perspective rather than a beginner's.

It's not just syntax that's different about C++. There are a whole host of memory, runtime, and idiomatic differences that just don't translate to any other language (except in some cases maybe C).

Learning the syntax is pretty straightforward and most people can knock it out in an afternoon. It's learning the C++-specific idioms and getting a feel for how C++ does things that takes a while.

With that in mind I would also recommend looking for a tutorial that concentrates on C++ idioms, anything that deals extensively with the STL would be a good start.

link|flag
vote up 1 vote down

I would stick with the same approach that I would if I didn't know a related language and read Stroustrup's book. It would just mean that there were some sections that could be read a bit faster.

link|flag
vote up 1 vote down

Not many developers are moving in that direction, so you seem to be swimming against the tide. C++ vs. C# gives a good run down of the differences between the two. Check out the References section on that post for more (similar) information.

As someone who has gone back and forth between Java and C++, I can recommend the C++ Primer as a good introductory/refresher reference to C++.

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.