Posts
Sort by recent activity
foreach nevereding loop issue
Hi,
I've found rather tricky case with foreach loop in exported sources.
sometimes C# code (break) is generated normal, eg:
for (int i = 1; i < list2.Count; i++)
{
bool flag = false;
foreach (c0002...
missing using directive
HI
for some reason Reflector does not include the required "using" for the HwndSourceHook type
example:
public bool m000141()
{
this.f000258 = new c00007c();
if (!this.f000258.m000022(new HwndSour...
Pointers support
Hi
does Reflector 7 support pointers? (ie unsafe types)
I'm asking because instead of pointers (->) I see the points (.)
Example:
public struct struct012c
{
public const int f00002e = 0x80;
public ...
Operator ++
instead of formatting source as
case 14:
return (structc5 = op_Decrement(structc5));
would be much better to decode as
case 14:
return ++structc5;
where structc5 is a local var on stack
.resources display
Please check the code that displayes resources that end up by the .resources extension
for some unknown reason .NET Reflector 7 beta1 (and 6.5 as well) shows a binary (hexadecimal) content of .res...
Export Assembly Source Code issue
Hi, Bart
there is an old issue that is still present in ver 7 EAP:
when an assembly has a very long class/method name, Windows got crazy and can't save it, please add analysis for it and trim the n...
Expression stack is empty at offset xx
Hi, I've found a tricky case in one assembly that lead to a strange exception
Short description of the issue:
Two methods out of all produces these errors:
1) HWISD._Call::EnUs0bE1y(Object, EventAr...
Object reference not set to an instance of object
Hi, interesting bug found
while decompiling one deobfuscated dll I've found that Reflector cant handle a tricky case.
Description:
Please refer to the assembly.
For some methods of c0000a0, for exa...