discodowney
discodowney

Reputation: 1507

Difference between Native debugging and managed debugging?

Im looking to try and set up remote debugging for a VB project in Visual Studio 2010. On the MSDN page it mentions both Native debugging and managed debugging (http://msdn.microsoft.com/en-us/library/vstudio/bt727f1t(v=vs.100).aspx), but I dont know what they mean. Can someone enlighten me?

Thanks

Upvotes: 3

Views: 1393

Answers (1)

RichieHindle
RichieHindle

Reputation: 281365

Managed is for .NET languages like C# and VB.NET.

Native is for compiled-to-machine-code languages like C and C++.

Upvotes: 2

Related Questions