3
votes
2answers
82 views
C# compiler + generic code with boxing + constraints
Let's examine the MSIL code generated for the following generic method:
public static U BoxValue<T, U>(T value)
where T : struct, U
where U : class
{
return value;
}
…
0
votes
5answers
87 views
Normalizing .net generics
While rewriting an assembly if I were to instruct a compiler to generate a nongeneric type for each generic instance would the application just get bigger in code and yet have the …
2
votes
2answers
85 views
C# compiling to MSIL code
Does the Microsoft C# compiler (CSC.exe) have an option to output the Intermediate Language files? Kind of like the -S switch does in GCC?
0
votes
2answers
55 views
Linking a .NET Expression Tree into a new assembly
I'm trying to write my own toy My Toy Language -> MSIL compiler in order to get a better understanding of how compilers work. I got the parsing and lexing working, I have built the …
3
votes
1answer
142 views
NOP in release build of F# code
I am playing with F# in VS2010 beta2, and since I am new to F#, I just picked one of the common examples and went ahead and implemented a factorial function as:
let rec factorial …
0
votes
1answer
30 views
.NET DynamicMethod Thread Safe?
If I write a DynamicMethod with an ILGenerator and the code that I output is thread safe would the resulting delegate be threadsafe?
My concern is that the IL gets compiled the fi …
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 …
1
vote
3answers
137 views
I am trying to make an obfuscator.
This is kind of a two part question. But it both relates to the same thing.
I want to work with the IL code of an app to apply patches. I am wondering what would be the right appr …
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 …
4
votes
4answers
150 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 …
4
votes
2answers
113 views
c# ILGenerator nop?
Im generating some IL with the ILGenerator here is my code:
DynamicMethod method = new DynamicMethod("test", null, Type.EmptyTypes);
ILGenerator gen = method.GetILGenerator();
gen …
0
votes
0answers
29 views
Is it possible to skip visibility checks when generating dynamic IL with MethodBuilder’s?
When generating IL using DynamicMethod it's possible to call methods and access fields that would be otherwise un-accessible if you provide 'true' for the restrictedSkipVisibility …
1
vote
2answers
61 views
MSIL Question (Basic)
Well lets say we have this c# code:
public override void Write(XDRDestination destination)
{
destination.WriteInt(intValue);
destination.WriteBool(boolValue);
destinat …
0
votes
1answer
187 views
Running MSIL inside Visual Studio
We have Visual Studio 2005.
I can successfully run MSIL programs from the command line using "ilasm".
I would like to be able to run these inside VS.
From other posts and search …
