Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is there a performance difference between 32-bit and 64-bit operating system when I use Visual Studio 2010 ? (Mostly working with .NET and C#)

share|improve this question
2  
There shouldn't even be a question of 32 bit or 64 bit OS at this point. – Josh Einstein Jun 17 '11 at 12:17
Removed subjective part of the question – CharlesB Jun 17 '11 at 12:17
If you would buy a good new pc it performances would be reduced on a 32 bit OS for example the most obvious possibility for bigger memory. And like Mr. Disappointment said visual studio is only available in 32 bit – Mythje Jun 17 '11 at 12:20
2  
Read this blog: blogs.msdn.com/b/ricom and this post especially [Visual Studio: Why is there no 64 bit version?][1] [1]: blogs.msdn.com/b/ricom/archive/2009/06/10/… – Davide Piras Jun 17 '11 at 12:23
5  
voting to reopen – CharlesB Jun 17 '11 at 12:23
show 2 more comments

3 Answers

up vote 5 down vote accepted

don't know all implication, but one major benefits of the 64bits is that the process can go further than 2GB of memory.

When you have dozens of plugins, or large projects with heavy process (Resharper real-time analysis for my experience), this can be a large benefits to go beyond 2GB of ram.

Also, 64bits will allow you to beyond the <4GB limitation of the OS..

share|improve this answer
3  
Yup, a good dev machine should have at a bare minimum 4gb, preferably 8+ – Allen Rice Jun 17 '11 at 12:18
@Allen: can I quote you to my boss :p – Steve B Jun 17 '11 at 12:33
2  
This answer ignores the fact that none of the tools are actually available in a 64-bit version. It must be the new car smell. – Hans Passant Jun 17 '11 at 12:55
Fine, none of the tools are available in 64 bit, but 64 bit will allow the OS to use more RAM overall and that means he can have more programs open, like MSSQL, LinqPad, 3 browsers, one or more instances of visual studio, god knows how many instances of cassini, etc. Last time I looked it was about $200 for 12gb of top of the line "gaming" RAM. If they can't afford that... ouch. – Allen Rice Jun 17 '11 at 13:05
@Steve IDK about nowadays, but some of the big name pc manufacturers used to build machines geared towards software development and they probably have tons of marketing speak about higher requirements for developers. I'd look there for ammo – Allen Rice Jun 17 '11 at 13:07
show 1 more comment

Taking a risk answering this, I think, but...

Visual Studio is only available in 32-bit, and so runs as such in either environment. I'm certain Windows is very well optimised for running 32-bit applications in the WOW64 emulator.

Indeed, it performs well enough for me to be productive.

For some information on this from MSDN, check here; neatly, this states:

Processor hardware. Instruction emulation is performed on the chip. On the x64 processor, instructions are executed natively by the micro-architecture. Therefore, execution speed under WOW64 on x64 is similar to its speed under 32-bit Windows. On the Intel Itanium processor, more software is involved in the emulation, and performance suffers as a result.

Though this is not an exhaustive explanation. The link covers more ground regarding the variability.

share|improve this answer
visual studio works faster in 32 bit OS, as the bus carraying data takes 32 bits at a time in contrast of 64 bits in 64 bit os. – Adeel Jun 17 '11 at 12:20
1  
@Mr. Disappointment You voted to close this question and then you answered it? – Allen Rice Jun 17 '11 at 13:12
@Allen: Affirmative. – Grant Thomas Jun 17 '11 at 13:17
@Mr. Disappointment Meta seems to say that the best thing to do when doing that is to make your answer a community wiki. Edit: I don't mind either way, I was just curious and I looked it up on meta and thought i'd share :) – Allen Rice Jun 17 '11 at 14:38
There isn't a downvote ;) – Allen Rice Jun 17 '11 at 14:40
show 3 more comments

Here at work, he have 32 bit and 64 bit boxes, some with Windows XP, some with Windows 7. Even though we work with quite big solutions, I can assure you that we can't notice any significant difference in performance. Nevertheless, @SteveB's right about going beyond the memory limitation, so I'd say go 64 bits.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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