9
votes
16answers
659 views
Should .NET developers *really* be spending time learning C for low-level exposure?
When Joel Spolsky and Jeff Atwood began the disagreement in their podcast over whether programmers should learn C, regardless of their industry and platform of delivery, it sparkled quite an explosive …
8
votes
5answers
372 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 …
4
votes
4answers
156 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 …
3
votes
13answers
602 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 …
3
votes
4answers
937 views
What CLR/.NET bytecode tools exist?
I'm well aware of Java tools for manipulating, generating, decompiling JVM bytecode (ASM, cglib, jad, etc). What similar tools exist for the CLR bytecode? Do people do bytecode manipulation for the …
2
votes
5answers
89 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?
2
votes
2answers
262 views
Is there a Java Descriptor like thing in .Net?
I'm working on a static analysis tool for .NET assembly.
In Java, there is a Descriptor which can be used to represent method or field in a string with specified grammar.
for field:
double …
2
votes
5answers
544 views
IL level code debugger
Hi,
Is there any IL level debugger in form of a VS plugin or standalone application?
Visual studio’s debugger is great, but it allows you to debug on either HLL code level or asselbly language, you …
1
vote
2answers
66 views
MSIL Question (Basic)
Well lets say we have this c# code:
public override void Write(XDRDestination destination)
{
destination.WriteInt(intValue);
destination.WriteBool(boolValue);
…
1
vote
4answers
172 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
48 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
116 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 …
1
vote
2answers
117 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 …
1
vote
2answers
178 views
In .NET, is the call stack inextricably tied to a thread?
Is it at all possible in the middle of a function execution to set a pointer to the current stack (to be picked up later) and then release the current thread (without unwinding the call stack) and …
0
votes
4answers
65 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 …
