Search code examples
c#asp.netvisual-studio-2008

What is Native Code?


The Project's Web section (under project properties in VS2008) has a list of debuggers: ASP.NET, Native Code, SQL Server. What is Native Code?


Solution

  • Native code is machine code executed directly by the CPU. This is in contrast to .NET bytecode, which is interpreted by the .NET virtual machine.

    A nice MSDN hit: Debugging Native Code