Ask: C++ or C#?

2 points by Huzi94 ↗ HN
Hello, Which programming language do you prefer between C++ or C#?

2 comments

[ 0.25 ms ] story [ 13.5 ms ] thread
it depends on what you're doing. c# is great for rapid development and will work for anything you're doing unless you absolutely, positively need performance.

c++ is pretty much a terrible language to use for anything unless you absolutely, positively need performance. some haters will argue that you should use c, but honestly,

for (std::vector<Hater>::iterator it = haters.begin; it != haters.end(); ++it) { cout << it << "'s gonna hate."; }

One constraint I have learned about C# is that it requires .NetFramework for program execution.