Posts
Sort by recent activity
Baml decoding issue for System types
there should be an alias for System names space, I guess, here is an example of what is now and what it should be:
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentati...
Resources: not possible to save resource with long path
imagine your assembly has a resource that has directories in name
in this case when do right click -> Save As Reflector shouts loudly:
.NET Reflector
File resources/icons/addimage_16.png is not a ...
Baml decoding issue with AppWorkspaceColorKey
Reflector decoded baml as (an excerpt)
<GeometryDrawing.Brush>
<LinearGradientBrush LinearGradientBrush.StartPoint="0.522284,1.81298" LinearGradientBrush.EndPoint="0.522284,-0.812977">
<GradientBru...
Baml decoding issue
Reflector 7.5 has a .baml decoding issue on one of resources (when clicking on .baml node in a tree view of resources):
System.ArgumentException: Invalid name character in '8, Culture=neutral, Publ...
Baml -> Xaml not complete decoding
Hi,
here is a short explanation of the issue:
1)Reflector (7.5.0.252) did this:
........
<ResourceDictionary>
<Style Style.TargetType="{x:Type ToolTip}">
.......
</Style>
</ResourceDictionary>
but ...
Generics issue
Hi
Am I right supposing this the correct place to report bugs for just released Reflecto7?
If yes, here we go:
What Reflector produces
[CompilerGenerated]
private sealed class c00015d : IEnumerator...
IEnumerable<> issue
Hi,
there is an issue with exporting sources when some class uses an inheritance from IEnumerable <> generic type
here is an example of output:
[DefaultMember("Item")]
public class c000310 : IEnume...
Private method access - wrong
Hi,
I've seen in some assemblies the following issue:
when a class implements some interface, the implemented methods cant be private, dont know if its up to protector or smth else. Is it possbile ...
Incomplete export
Hi,
Attached is the sample of assembly (original and deobfuscated one)
Issue description:
when you open it up in Refl7 latest - you will see it has 5 delegates with Invoke and some method. (I reco...
Cast not valid issue
Hi, in some cases a cast is required for uint (maybe some other basic types)
in following example
objArray2 = p3 as object[];
string str = objArray2[0] as string;
string str2 = objArray2[1] as stri...