Linked by MOS6510 on Thu 10th Jan 2013 23:25 UTC
Permalink for comment 548427
To read all comments associated with this story, please click here.
To read all comments associated with this story, please click here.
Features
Linked by Thom Holwerda on 05/21/13 21:38 UTC
Linked by Thom Holwerda on 05/20/13 11:29 UTC
Linked by Thom Holwerda on 05/18/13 21:33 UTC
Linked by David Adams on 05/16/13 4:23 UTC
Linked by Thom Holwerda on 05/11/13 21:41 UTC
Linked by Thom Holwerda on 05/08/13 14:22 UTC
Linked by Thom Holwerda on 05/02/13 15:28 UTC
Linked by Thom Holwerda on 04/29/13 21:06 UTC
Linked by Thom Holwerda on 04/24/13 22:24 UTC
Linked by Thom Holwerda on 04/18/13 11:21 UTC
More Features »
Sponsored Links



Member since:
2011-05-19
He probably meant IntelliTrace, which is the historical debugging tool bundled with Visual Studio Ultimate. IntelliTrace is implemented by using IL metadata, and thus it does not work on native C++ code.
Parallel Tasks/Stacks was designed primarily to debug task-parallel applications -- though you can also use it on threads. gdb would need an extension for whatever task-parallel library you're using. The Visual Studio debugger has it because the compiler, runtime, and IDE are all bundled together in one package -- and so the debugger can be tightly-coupled to the bundled libraries.
It's not so much C# vs C++, as the "everything bundled together" model vs. the individual-tools model. If you select components individually, then you'd just install a whole bunch of addons to get what you need in the IDE -- Eclipse being a primary example.
Edited 2013-01-11 19:02 UTC