Tagged Questions

IL (Intermediate Language) is low level language used by Microsoft .NET Framework and Mono.

learn more… | top users | synonyms

35
votes
4answers
516 views

Can C# 'is' operator suffer under release mode optimization on .NET 4?

Below is a simple test fixture. It succeeds in Debug builds and fails in Release builds (VS2010, .NET4 solution, x64): [TestFixture] public sealed class Test { [Test] public void ...
25
votes
3answers
390 views

.NET functions disassembled

When disassembling .NET functions, I notice that they all start with a similair pattern. What does this initial code do? This code appear before the actual code for what the function is supposed to ...
20
votes
6answers
611 views

Creating method dynamically, and executing it

Background: I want to define few static methods in C# , and generate IL code as byte array, from one of these methods, selected at runtime (on client), and send the byte array over network to another ...
17
votes
4answers
411 views

IL Instructions not exposed by C#

What IL instructions are not exposed by C#? I'm referring to instructions like sizeof and cpblk - there's no class or command that executes these instructions (sizeof in C# is computed at compile ...
15
votes
5answers
1k 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 ...
14
votes
3answers
333 views

C# generated IL for ++ operator - when and why prefix/postfix notation is faster

Since this question is about the increment operator and speed differences with prefix/postfix notation, I will describe the question very carefully lest Eric Lippert discover it and flame me! ...
13
votes
16answers
955 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 ...
12
votes
7answers
491 views

Is an in depth knowledge of IL important for .net development

When I did mostly c++ I though it was critical to know assembly and wrote some non trial asm code just so that I could truly understand what was going on. I now do mostly .net and while I have some ...
10
votes
2answers
101 views

A tool for easy IL code inspection

Sometimes I would like to quickly see the IL representation of my code snippets in C#, to understand what exactly happens to various code statements under the hood, like it's done here for example. I ...
10
votes
3answers
791 views

Viewing the IL code generated from a compiled expression

Is it possible to view the IL code generated when you call Compile() on an Expression tree? Consider this very simple example: class Program { public int Value { get; set; } static void ...
10
votes
7answers
619 views

Determine whether .NET assemblies were built from the same source

Does anyone know of a way to compare two .NET assemblies to determine whether they were built from the "same" source files? I am aware that there are some differencing utilities available, such as ...
10
votes
3answers
360 views

Visual Studio/RAD support for coding directly in IL?

For the longest time I've been curious to code in Intermediate Language just as an academic endeavour and to gain a better understanding of what's happening "under the hood". Does anybody provide ...
8
votes
2answers
126 views

how to catch an int

I am using IL to throw an Int32 and catch it. This is just out of curiosity, I am not trying to achieve anything, so please dont tell me to throw an Exception instead of int. .method private ...
8
votes
2answers
292 views

What does [opt] mean in MSIL?

I found the "optional parameters" feature in C# 4.0 very interesting, so I tried to figure out how they made it happen. so I wrote a method like this: private static void A(int a = 5) { } Compiled ...
8
votes
5answers
218 views

Are Delegates more lightweight than classes?

I tried disassembling a C# created executable, but I couldn't come to a conclusion. What I'd like to know is that if for the CLR c#'s delegates are really special entities or just a compiler sugar? I ...
7
votes
3answers
221 views

Reference types - can we see the actual reference?

The difference between reference types and value types is often confusing for beginners due to not understanding what a variable of value type actually holds. We know that: Value types store the ...
7
votes
2answers
100 views

Generic syntactic sugar or true improvement

I have a question regarding the following method calls: var ctl1 = this.FindControlRecursively("SomeField") as HiddenField; var ctl = this.FindControlRecursively<HiddenField>("SomeField"); ...
7
votes
3answers
326 views

Disassemble .NET IL to find error message

My team is attempting to find where an error message is occuring within a .NET windows service, that encapsulates a web service, which was built by Microsoft and resides on our servers, to support a ...
7
votes
2answers
317 views

What OpCodes were introduced in CLR 4.0?

Are there any IL opcodes that are new in .NET 4.0 as compared to 3.5, and if so, where can I find a list of them?
7
votes
1answer
125 views

Traverse a c# method and anazlye the method body

Whats the easiest way to traverse a methodinfo in c#? I want to traverse the method body and find field-references and such and retrieves the types. In System.Reflection there is: ...
6
votes
1answer
111 views

Why such a difference in IL between IF and the conditional operator?

C# has a conditional operator and IF statements and I suspected that the conditional operator would be just syntactic sugar. So at compile time it would have a the same as an IF operation. However ...
6
votes
1answer
149 views

High Performance Cloning

I'm after a means of deep cloning an object graph in a perfomant way. I'm going to have multiple threads cloning a graph extremely quickly such that they can play with some state and throw away the ...
6
votes
2answers
105 views

Generating IL for Anonymous Methods

I want to generate IL for a multithreaded application. As the first step I wrote a simple application and inspected, generated IL using ILSpy. public class ThreadTesting { public static void ...
6
votes
4answers
200 views

What is unsafe in this code?

I am learning about managed and unmanaged code in CLR. So I wrote this example with C-style pointers in C#: unsafe static void Main(string[] args) { int x; int* y; y = &x; *y = ...
6
votes
3answers
107 views

What is the maximal number of methods per .NET class

Title asks it all, actually, but still, for completeness sake: Hi, I'm writing a small post-compiling tool in the .NET platform, and while trying to optimize it, I've encountered a question I can-not ...
5
votes
2answers
205 views

Generated IL differences for VB.NET and C#

Today I was playing around with Entity Framework and I've read that the generated IL for C# was different than VB.NET for the following code: VB.NET: Dim ctx As New TravelEntities Sub Main() ...
5
votes
2answers
268 views

IL: ldfld vs ldflda

I'm writing a small IL-weaving application using Mono.Cecil, that requires me to manipulate the target assembly on an IL level. My question is quite simple, but I still find the matter very ...
5
votes
2answers
169 views

What does Array.Clear actually do under the covers?

I'm looking for a answer to what the Array.Clear(...) method does under the covers in C#. I've looked at the IL, but that isn't really yielding any clues, since it simply calls the ...
5
votes
2answers
291 views

Simultaneously debug trough intermediate language (IL) and C# in Visual Studio

I'm looking for an extension for Visual Studio where in debug mode it's possible to single step through the intermediate language beside C#. I'm not looking for a solution to debug managed and ...
5
votes
2answers
214 views

Does initialization of local variable with null impacts performance?

Lets compare two pieces of code: String str = null; //Possibly do something... str = "Test"; Console.WriteLine(str); and String str; //Possibly do something... str = "Test"; ...
5
votes
7answers
344 views

.net Compiler Optimizations

I am writing an application that I need to run at incredibly low processor speeds. The application creates and destroys memory in creative ways throughout its run, and it works just fine. I am ...
5
votes
5answers
586 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?
5
votes
5answers
2k 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 ...
4
votes
2answers
125 views

How to generate IL source code with csc (C# compiler) or dmcs (mono C# compiler)?

gcc has an option of -s to generate assembly source code. Does csc (MS C# compiler) or dmcs (mono C# compiler) have equivalence? I mean do those compilers provide an option to generate IL source code ...
4
votes
1answer
128 views

Replace the ref of a parameter without using the ref keyword (using IL)

I am looking to be able to replace the object reference of a parameter without having to use the ref keyword. The reason that I am avoiding using ref is to preserve collection initializer invocation ...
4
votes
1answer
103 views

Generating IL for Recursive Methods

I tried to generate IL for recursive method using following strategy, Firstly I defined type using following code snippet private void InitializeAssembly(string outputFileName) { ...
4
votes
1answer
272 views

Why does generated IL code start with a Nop?

I was trawling through some of the IL of one of my assemblies (via ILDasm) and I noticed that all of my methods begin with a nop instruction. Does anyone know why that is?
4
votes
2answers
151 views

a generic version of an F# function is causing invalid IL?

So I've written a little binary search function (not that I need to, but just because I can), and when I make it specific to strings or to integers, for example, it works well. When I attempt to use ...
4
votes
1answer
191 views

IL short-form instructions aren't short?

I was looking at the IL code of a valid method with Reflector and I've run into this: L_00a5: leave.s L_0103 Instructions with the suffix .s are supposed to take an int8 operand, and sure enough ...
4
votes
4answers
433 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 ...
4
votes
13answers
2k 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
1answer
120 views

Why does C# compiler emit additional OpCodes in IL?

If I've a method Multiply defined as: public static class Experiment { public static int Multiply(int a, int b) { return a * b; } } Then why does the compiler emit this IL: ...
3
votes
2answers
122 views

cecil: Instruction.Operand types corresponding to Instruction.OpCode.Code value

Is there any documentation or is there a part of the cecil source code that I can consult to get a comprehensive view of which Operand types cecil will use for a given Code value? Eg: I can glean from ...
3
votes
3answers
175 views

IL, emit default constructor call

I'm generating new type at runtime, After I've generated default constructor I want to generate another one, with parameters.I'm doing it this way : cb = ...
3
votes
2answers
68 views

What do “IS” “IL” and “IEXT” refer to in the RDF Semantics specification?

These terms are used in the "Definition of a simple interpretation" table on http://www.w3.org/TR/2004/REC-rdf-mt-20040210/#interp . I am a little unclear on their meaning. At this point I think ...
3
votes
1answer
102 views

Why the following two methods generating the same IL?

public static class Extensions { public static T Include<T>(this System.Enum type,T value) where T:struct { return ((T) (ValueType) (((int) (ValueType) type | (int) (ValueType) ...
3
votes
1answer
135 views

Generating IL for 2D Arrays

I want to generate IL for the 2D array construction, using System.Reflection.Emit namespace. My C# code is Array 2dArr = Array.CreateInstance(typeof(int),100,100); Using ildasm, I realized that ...
3
votes
4answers
164 views

Generating IL for .Net Platform

I’m writing a small compiler in C# and planning to generate IL instructions for .Net platform using System.Reflection.Emit. My question is, it is advisable to use System.Reflection.Emit for generating ...
3
votes
2answers
276 views

Value Type Conversion in Dynamically Generated IL

I'm working with IL to increase the performance of many tasks which are commonly handled with reflection. To accomplish this, I'm heavily using the DynamicMethod class. I've written dynamic methods ...
3
votes
3answers
107 views

Is there any scenario where programmer use IL as their primary language for writing code

Most of the developer use one of the core .NET language ( Like c#, vb.net, c++/cli etc) to create their applications/developers. I was just wondering if any one would use Intermediate Language (IL) as ...

1 2 3