C++/CLI so slow in win2k

  • Thread starter Thread starter zade
  • Start date Start date
Z

zade

I move a C++/CLI project from my windows2003 server to win2k under
MSVC2005, but when I debug it, it becomes so slow than windows2003
server.

So why?

Thanks!
 
zade said:
I move a C++/CLI project from my windows2003 server to win2k under
MSVC2005, but when I debug it, it becomes so slow than windows2003
server.

So why?
When you debug, make sure you set the "Debugger Type" to the correct configuration, either managed or unmanaged. If you leave it as
"auto", it might pick mixed mode, which is extremely slow. I'm guessing this is at the heart of the matter, and that it has nothing
to do with the operating system per se.

Brian
 
Back
Top