Activity overview
Latest activity by 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...
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 ...
That worked! Thank you!
In the past, Reflector types were obfuscated so I could not create the ApplicationManager directly, but now it is possible. Great! / comments
That worked! Thank you!
In the past, Reflector types were obfuscated so I could not create the ApplicationManager directly, but now it is possible. Great!
I'm using this:
/select:Reflector.CrossNet /crossnet:SomeConfigFile.xml
Which in the past, selected the Reflector.CrossNet Add-In.
But maybe this is not necessary anymore. And I suppose all the Add-ins are automatically executed now. (at least, it seems that's what is happening with my quick test).
I will let you know if I still have an issue.
Thanks for your help!
Olivier / comments
I'm using this:
/select:Reflector.CrossNet /crossnet:SomeConfigFile.xml
Which in the past, selected the Reflector.CrossNet Add-In.
But maybe this is not necessary anymore. And I suppose all the Add...
.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...