Prev: Visual Studio 2010 RC - what's the licensing?
Next: Crystal Reports .NET 2005 Progress Bar / Wait Icon
From: Kimbo Slice on 15 Mar 2010 19:17 I know there isn't a x64 version of Visual Studio but is there anything stopping me from running my x86 version of VS on a 64bit version of Windows 2003? When debugging my console application, will my application be able to use all memory installed in the system (as opposed to the 4gb limitation that's in place on 32bit systems)?
From: Mike Lovell on 15 Mar 2010 20:20 > I know there isn't a x64 version of Visual Studio but is there anything > stopping me from running my x86 version of VS on a 64bit version of > Windows 2003? When debugging my console application, will my application > be able to use all memory installed in the system (as opposed to the 4gb > limitation that's in place on 32bit systems)? How big if the program you're debugging!!! :o) Yes, I run Visual Studio 2008 and 2010 both on Window 7 x64 Enterprise. There's no problem with doing this. But no, a single process (devenv.exe) cannot use more than the maximum memory it can address as a 32 bit application. -- Mike GoTinker, C# Blog http://www.gotinker.com
From: Kimbo Slice on 15 Mar 2010 21:09 Oh no, sorry, I didn't mean that visual studio will use more than 4gb. I meant that the program I'm debugging *itself* will use more than 4gb. It loads a ton of financial data into RAM and crunches it. "Mike Lovell" <dont.reply(a)gotinker.com> wrote in message news:edjBE6JxKHA.2436(a)TK2MSFTNGP04.phx.gbl... >> I know there isn't a x64 version of Visual Studio but is there anything >> stopping me from running my x86 version of VS on a 64bit version of >> Windows 2003? When debugging my console application, will my application >> be able to use all memory installed in the system (as opposed to the 4gb >> limitation that's in place on 32bit systems)? > > How big if the program you're debugging!!! :o) > > Yes, I run Visual Studio 2008 and 2010 both on Window 7 x64 Enterprise. > > There's no problem with doing this. But no, a single process (devenv.exe) > cannot use more than the maximum memory it can address as a 32 bit > application. > > -- > Mike > GoTinker, C# Blog > http://www.gotinker.com
From: Mike Lovell on 15 Mar 2010 21:23 > Oh no, sorry, I didn't mean that visual studio will use more than 4gb. I > meant that the program I'm debugging *itself* will use more than 4gb. It > loads a ton of financial data into RAM and crunches it. Yes, you can run/debug x64 applications using Visual Studio. In which case, your application could use the upper memory limit of x64 -- Mike GoTinker, C# Blog http://www.gotinker.com
From: Kimbo Slice on 15 Mar 2010 23:03
sweet, thanks! "Mike Lovell" <dont.reply(a)gotinker.com> wrote in message news:eCXJWdKxKHA.4752(a)TK2MSFTNGP04.phx.gbl... >> Oh no, sorry, I didn't mean that visual studio will use more than 4gb. I >> meant that the program I'm debugging *itself* will use more than 4gb. It >> loads a ton of financial data into RAM and crunches it. > > Yes, you can run/debug x64 applications using Visual Studio. In which > case, your application could use the upper memory limit of x64 > > -- > Mike > GoTinker, C# Blog > http://www.gotinker.com |