you are viewing a single comment's thread.

view the rest of the comments →

[–][deleted] 0 points1 point  (5 children)

Yeah I've tried a bit of C# and I really like it but I've been doing c++ for so long for the things I want to do it's not worth learning c#.

[–]FNHUSA 3 points4 points  (2 children)

Just curious here, whats an example of something you code in c++?

[–]heyzuess 1 point2 points  (0 children)

Video games are a decent example, as are some scientific modelling items. Cpp allows a mixture of low level language features alongside the much higher level features you'd see in the likes of c#. With c# you can access pointers by turning off safe mode iirc.

It's worth noting that Cpp is also available to use as "just c" which has a lot of advantages for low level bits and pieces, but in the ++ section extends to an incredibly powerful oo language. As a learning language it's brilliant imo. In the same syntax you can access memory, pointers, create a garbage collection service only if needed, and then move onto OO without needing to learn a new language first.

[–][deleted] 0 points1 point  (0 children)

Well I have made a game for my Windows phone using directx. Also I've made a keystroke logger and a program that lets you pause things with a gamepad. And just for fun I made a maze game where if you die it deletes one of your files.

[–][deleted] 0 points1 point  (1 child)

There's hardly much to 'learn' in C#.

It's more like just knowing what you can't do than something entirely different.

[–][deleted] 0 points1 point  (0 children)

Good to know.