Micro-optimizations in .NET (x86/x64)
Part 1
Jun 5, 20233 min read1
Search for a command to run...
Articles tagged with #assembly
Part 1
This example demonstrates how to execute native x86 machine code directly from .NET and, conversely, how to call a managed .NET method from that native code — all without loading any external libraries. How it works The core idea is to allocate a chu...