Click here to Skip to main content
15,890,825 members
Everything / ILDASM

ILDASM

ILDASM

Great Reads

by Eric Lynch
Extends .NET reflection to decode the byte array returned by System.Reflection.MethodBody.GetILByteArray(), discusses the techniques to achieve this, and provides a brief primer on .NET reflection.
by Bruno van Dooren
Mitigate problems caused by DCOM hardening, by reverse engineering a non-compliant .NET app
by matt warren
Whilst writing a previous blog post I stumbled across the .NET Interpreter, tucked away in the source code.
by wmjordan
Circumventing language obstacles and optimizing performance with Dynamic Methods, Dynamic Assemblies.

Latest Articles

by Bruno van Dooren
Mitigate problems caused by DCOM hardening, by reverse engineering a non-compliant .NET app
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 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 wmjordan
Circumventing language obstacles and optimizing performance with Dynamic Methods, Dynamic Assemblies.

All Articles

Sort by Score

ILDASM 

11 Jan 2012 by SergioAmorim
A way to quickly find the CLR version of a .NET assembly from the command line
31 Jan 2013 by Shweta Lodha
When, what, and how to use constants in C#.