-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I have some MSIL in byte format (result of reflection's GetMethodBody()) that I'd like to analyze a bit. I'd like to find all classes created with the new operator in the MSIL. Any ideas on how to do that programmatically?
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hi,
The following C#-snippet:
var x = 1;
var y = 1;
if (x == y)
Console.Write("True");
Generates this MSIL:
.locals init (
[0] int32 x,
[1] int32 y,
[2] bool CS$4$0000)
L_0000: nop
L_0001: ldc.i4.1
L_0002: stloc.0
L_0003: ldc.i4.1
L_0004: stloc.1
L_0005:…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
For the longest time I've been curious to code in Microsoft Intermediate Language (MSIL) just as an academic endeavour and to gain a better understanding of what's "happening under the hood".
Is there any sort of Visual Studio support for this in the form of: project templates, IntelliSense integration…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hi,
Learning MSIL is fun and all that. Understanding what is going on "under the hood" can in many ways improve how you write your code performance-wise. However, the IL that is produced by the compiler is quite verbose and does not tell the whole story since JIT will optimize away a lot of the code…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I have some .net dll's and Exe's.
I need to pass MSIL files to mono project.
How do i convert these Dll's to MSIL files?
>>> More