Tagged Questions

41
votes
15answers
2k views

What can you do in MSIL that you cannot do in C# or vb.NET?

All code written in .NET languages compiles to MSIL, but are there specific tasks / operations that you can do only using MSIL directly? Let us also have things done easier in MSI …
2
votes
1answer
72 views

Stringbuilder in CIL (MSIL)

Hey there, I'm trying to generate code that takes a StringBuilder, and writes the values of all the properties in a class to a string. I've got the following, but I'm currently ge …
0
votes
1answer
39 views

Has the ECMA CIL/Microsoft MSIL specification ever substantially changed?

The ECMA standard for the .NET Common Intermediate Language has been updated three times. I haven't been able to find a version history that would make clear the changes between th …
0
votes
3answers
73 views

Partially disassembling .net executable.

Hello. I need to write a relatively small program to parse .net executables and generate the list of calls to external methods. For example if System.Console.WriteLine is called in …
0
votes
1answer
29 views

PEVerify Warning Parameter out of Sequence

I've built an assembly using Reflection.Emit. Running PEVerify returns 214 warnings of the same type: [MD]: Warning: Parameter out of sequence (parameter: 1; seq.num: 1). [token:0 …
1
vote
2answers
173 views

Feeding an object literal to ILGenerator

Food obj = ...; ILGenerator gen = (...).GetILGenerator(); gen.Emit( ?? obj ?? ); // replace this gen.Emit(OpCodes.Call, typeof(Person).GetMethod("Eat")); It's apparently not pos …
0
votes
0answers
65 views

Linking CIL with native code

In C++/CLI the following is sample code that links native and managed code within the same file. #include "stdafx.h" #pragma unmanaged __declspec( dllexport ) void func2() { …
5
votes
6answers
353 views

Programmatic MSIL injection

Let's say I have a buggy application like this: using System; namespace ConsoleApplication1 { class Program { static void Main(string[] args) { …
1
vote
3answers
227 views

API for getting IL from byte array

There is a GetILAsByteArray method in MethodBody class which gives body of a method. I am looking for converting this byte array into more understandable IL instructions (into a Li …
6
votes
7answers
837 views

Modifying Existing .NET Assemblies

Is there a way to modify existing .NET assemblies without resorting to 3rd party tools? I know that PostSharp makes this possible but I find it incredibly wasteful that the develop …
0
votes
2answers
158 views

Which languages compile to CIL / MSIL

Most of the lists I have seen comprise: C# VB.Net Other .NET language What languages fall into the "Other" category? I've come across: Delphi C++ Cobol.Net Chrome I'm sur …
14
votes
5answers
279 views

Advantages of CIL knowledge in .NET

What are the advantages of understanding CIL? Do you have to know assembly to understand it? The code in these files looks similar. How do I learn more about it? Any books about …
1
vote
2answers
89 views

How would one access object properties in CIL (MSIL)?

I'm an absolute beginner, you see. Say I have a string object on the stack and want to get the number of characters in it - its .Length property. How would I get the int32 number h …
4
votes
6answers
948 views

Indexing arrays with enums in C#

I have a lot of fixed-size collections of numbers where each entry can be accessed with a constant. Naturally this seems to point to arrays and enums: enum StatType { Foo = 0, …
2
votes
7answers
471 views

Virtual Machine Optimization

I am messing around with a toy interpreter in Java and I was considering trying to write a simple compiler that can generate bytecode for the Java Virtual Machine. Which got me thi …

1 2 next
15 30 50 per page