1
vote
2answers
50 views
IL / CLR / DLR References?
I'm wanting to learn more about IL and CLR / DLR under the hood. A friend of mine recommended the book "Inside Microsoft .NET IL Assembler", but since it came out in 2002 I fear it's pretty out of …
0
votes
4answers
67 views
Static analysis of .net assembly
I have a C# project for which I need to find the all private methods which are not called from any other public method directly or indirectly.
In addition, for each private method which is called …
2
votes
5answers
95 views
What is your recommendation for a good book on the .NET CLR and CIL?
Do you know any good book about the workings of the CLR, the .NET Framework and CIL as opposed to any specific .NET language?
0
votes
2answers
71 views
Casting Object to a specific class in IL?
I discovered the reason I was getting "Operation could destabilize the runtime" in a DynamicMethod I'm producing, and though I easily fixed it, it left me with a seemingly simple question:
How do I …
1
vote
2answers
67 views
MSIL Question (Basic)
Well lets say we have this c# code:
public override void Write(XDRDestination destination)
{
destination.WriteInt(intValue);
destination.WriteBool(boolValue);
…
0
votes
0answers
61 views
C# / IL to Three Address Code
Is there a framework existing to compile C# source into a three address code representation, or at least a tool that is able to read IL files and produce TAC in a CFG?
I am looking for a framework …
4
votes
4answers
158 views
Is it possible to Code in MSIL?
I am just curious to know if this can be done or not. I don't plan on doing it if it dosen't pack some significant performance benefits. I am a web and game developer but I usually don't develop games …
1
vote
4answers
175 views
C# iterate over switch’s cases
Hello,
Is it possible to retrieve programmatically all the case of a switch ? I don't have any idea, maybe by IL but not sure how to do ...
In fact my global issue is the following : I got a siwtch …
1
vote
2answers
49 views
Converting a CFG to IL
I build a CFG out of an arbitrary IL and want to convert that CFG back to IL. The order of the vertices in the CFG is of course not equal to the order of the original IL instructions.
This is fine …
1
vote
2answers
125 views
Getting IL code from DLL binary file
Hi Fellows,
I am studding IL.
I like .Net Reflector tool from RedGate (Lutz initially). I already have Serge Lidin’s and Ecma-335 books. It looks like these things are all we have to work with IL …
3
votes
13answers
609 views
Why do people disassemble .NET (CLR) binaries?
I'm somewhat new to .NET but not new to programming, and I'm somewhat puzzled at the trend and excitement about disassembling compiled .NET code. It seems pointless.
The high-level ease of use of …
0
votes
3answers
228 views
Recommend a book on Reflection.Emit in C#
Can anyone recommend a good book which covers IL programming, specifically using Reflection.Emit in C#?
Thanks!
1
vote
2answers
119 views
Find argument values of method call in IL.
Hi,
I have several special methods, and I want analyze they calls in compiled assembly.
Example:
public static class SrcHelper {
[MySpecialMethod]
[Conditional( "DEBUG" )]
public static …
8
votes
5answers
392 views
Why is the C# compiler emitting a callvirt instruction for a GetType() method call?
I am curious to know why this is happening. Please read the code example below and the corresponding IL that was emitted in comments below each section:
using System;
class Program
{
static …
0
votes
1answer
207 views
Implementing an Interface on a dynamic type with events
I am taking in an interface, looping through the .GetEvents() return array and attempting to implement the event on my dynamic type. At the point when I try to call TypeBuilder.CreateType(), I am …
