How can we help you today? How can we help you today?
Xerces
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...
1 follower 1 comment 0 votes
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 ...
1 follower 1 comment 0 votes
.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...
2 followers 2 comments 0 votes
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...
2 followers 2 comments 0 votes