Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Everything / ILDASM

ILDASM

ILDASM

Great Reads

by Sander Rossel
Journey to the center of the .NET Framework with a chance of IL along the way!
by matt warren
How to add a new Bytecode instruction to the CLR
by SergioAmorim
A way to quickly find the CLR version of a .NET assembly from the command line
by Shweta Lodha
When, what, and how to use constants in C#.

Latest Articles

by Sander Rossel
Journey to the center of the .NET Framework with a chance of IL along the way!
by matt warren
How to add a new Bytecode instruction to the CLR
by SergioAmorim
A way to quickly find the CLR version of a .NET assembly from the command line
by Shweta Lodha
When, what, and how to use constants in C#.

All Articles

Sort by Score

ILDASM 

by matt warren
How to add a new Bytecode instruction to the CLR
by n.podbielski
This article is first part of the series of three. Next ones you can find here and here.. Code for all three articles, with new features and bug fixes is available on GitHub and as Nuget package.. Why not Reflection?. If you working with .
by n.podbielski
Reflection.Emit is very powerful tool. It creates IL code and since C# is converted into IL too, we have the same functionality as in C# and even more. It is very powerful and at the same time very complicated. Because of that it is worth to discuss how and for what it should be used.
by matt warren
Whilst writing a previous blog post I stumbled across the .NET Interpreter, tucked away in the source code.