Difference between C# and C++

beanimanius

New member
Joined
Mar 14, 2004
Messages
1
Ive been out of the programming loop for quite a few years now (going on seven years). The last language I learned was C++, there probably has been some changes though. After changing my major Ive had to get back into it and I realized how much fun I have doing it.

I need to learn C# to start kind of a hobby. (RunUO)

The question I have is what differences are there from someone who has worked with both between the two. How hard will it be to take a refreshers on C++ and then pick up on C#? Or will that just confuse me?
 
beanimanius said:
The question I have is what differences are there from someone who has worked with both between the two. How hard will it be to take a refreshers on C++ and then pick up on C#? Or will that just confuse me?

C# is different.

Its very close in formatting syntax, but youre using a managed .Net language, so the actual code wont be C, but .Net. You do still have ";"s after each line and brackets to close procedures and if...then cases, etc.
 
The C++ that you knew is a bit different; theres standardization and STL now. C# on the other hand, is quite easy when compared to C++. While things are a bit different in the managed world, you shouldnt have too much of a problem picking up the language.
 
Back
Top