Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How much of a performance penalty are you paying when going to .Net from a vanilla c++ unmanaged environment. I have heard that the difference is smaller now than what it used to be?

I am referring to a PC environment and not embedded systems

share|improve this question
Somthing like this: stackoverflow? – JleruOHeP Mar 30 '12 at 5:27
Interesting. I actually didn't consider that it in some cases can be faster... – TGH Mar 30 '12 at 5:29
2  
the main difference is in the time it takes you to do your program – claptrap Mar 30 '12 at 5:29
Could be anything, from a performance gain to orders of magnitude loss, depending on task. – Don Reba Mar 30 '12 at 5:30
1  
About 24.7%.... – Cody Gray Mar 30 '12 at 5:41
show 2 more comments

closed as not constructive by Michael Petrotta, Mat, claptrap, Jerry Coffin, Cody Gray Mar 30 '12 at 5:40

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

2 Answers

The short answer, it depends on what you are doing. There are several places to read about this.

C++ performance vs. Java/C#

Head-to-head benchmark: C++ vs .NET

C# versus C++ versus Java performance comparison

share|improve this answer
Great point made in the article "Engineers are expensive and servers are not!" – TGH Mar 30 '12 at 5:33

It's absolutely depends on your project.

But remember itat .Net is not designed for high performance computing, but for high productivity.

So, in cases on stressing performance it will almost always loose in front of c, c++ or say python. But if you measure time you need deliver a simple windows based application, full of modern features,, the story almost always will be inverse.

share|improve this answer

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