Posts
Sort by recent activity
stackalloc does not disassemble correctly
Hello,
if I disassemble this C# code:
const int SIZE = 20;
int* fib = stackalloc int[SIZE];
I get this in the C# disassembly window:
int* fib = (int*) stackalloc byte[(((IntPtr) 20) * 4)];
Which is...
How to get the debug information from an IStatement?
Hello,
in the Reflector API, is there a way to get the corresponding source code and line from an IStatement or IHasIlOffset?
I would like to be able to display the C# source code directly instead ...
.NET Reflector could not resolve XYZ
Hello,
If I want to use an Add-In on the command line API, I need to use /select.
Unfortunately if I use /select:XYZ (with XYZ the name of my Add-In), I get a message box with ".NET Reflector could...
Can't create IServiceProvider instance
Hello,
I developed a Reflector.NET add-in few years ago. It transforms .NET assemblies in native unmanaged C++ (can be used for embedded system - http://crossnet.codeplex.com/).
The most efficien...