Comments
Sort by recent activity
The broken link within the docs has been fixed, but it will probably take until tomorrow for the change to make it through to the live web site.
Please can you give more details about a scenario where setting a breakpoint consistently doesn't work?
Reflector Pro simply generates pdb files, which point to the decompiled source, and we place these in directories that we have added to the symbol search path (Tools/Options.../Debugging/Symbols). You can check which symbols have been loaded by using the Debug/Windows/Modules tab and looking at the Symbol Status and Symbol File to see which symbols have been loaded by Visual Studio. / comments
The broken link within the docs has been fixed, but it will probably take until tomorrow for the change to make it through to the live web site.
Please can you give more details about a scenario wh...
The first request, ALT giving focus on keydown instead of keyup, is already in our bug tracking system, and should be fixed for the next release.
In the second request, I think the menu command "Toggle Bookmark" is doing what it says it should - adding or removing depending on whether it is already there. I guess some kind of visual indicator as to whether a bookmark is already set on the item would be good - I've added a request to the bug tracking system (RP-756). / comments
The first request, ALT giving focus on keydown instead of keyup, is already in our bug tracking system, and should be fixed for the next release.
In the second request, I think the menu command "To...
You can use File/Open to navigate to an assembly, but if the assembly is in the GAC then the easiest thing to do is File/Open Cache and then use the filter to find system.web.mvc and then double click it to load it. / comments
You can use File/Open to navigate to an assembly, but if the assembly is in the GAC then the easiest thing to do is File/Open Cache and then use the filter to find system.web.mvc and then double cl...
You are running into bugs in the decompiler.
Do you know the original language for the assembly that you are decompiling? If it wasn't C#, then the decompiler may have difficulty translating some instruction sequences into C#. / comments
You are running into bugs in the decompiler.
Do you know the original language for the assembly that you are decompiling? If it wasn't C#, then the decompiler may have difficulty translating some i...
abuck wrote:
where can I report bugs ?
This forum is the best place. We can then log them in our bug tracking system. / comments
abuck wrote:
where can I report bugs ?
This forum is the best place. We can then log them in our bug tracking system.
I think they'll been around since the 3.0 days. The following post discusses how they are used for multi-targetting: http://blogs.msdn.com/b/christy/archive ... blies.aspx / comments
I think they'll been around since the 3.0 days. The following post discusses how they are used for multi-targetting: http://blogs.msdn.com/b/christy/archive ... blies.aspx
You are probably looking at one of the Reference Assemblies which just contain the metadata and not the IL.
If I use File/Open Cache to go to a non-reference assembly, you should see the code. / comments
You are probably looking at one of the Reference Assemblies which just contain the metadata and not the IL.
If I use File/Open Cache to go to a non-reference assembly, you should see the code.
If the assemblies build into a top level directory, then you can simply drag all of the files from that directory into Reflector. / comments
If the assemblies build into a top level directory, then you can simply drag all of the files from that directory into Reflector.
Reference Assemblies are for the use of the compiler, in that they contain metadata but no IL instructions. You need to point Reflector at the real assemblies which do have the IL instructions. The easiest way to find these assemblies is via the File/Open Cache menu item. / comments
Reference Assemblies are for the use of the compiler, in that they contain metadata but no IL instructions. You need to point Reflector at the real assemblies which do have the IL instructions. The...