Tagged Questions

.NET Reflector is an assembly browser that can be used to explore, analyze, decompile, and debug the contents of any .NET assembly.

learn more… | top users | synonyms

10
votes
3answers
795 views

Viewing the IL code generated from a compiled expression

Is it possible to view the IL code generated when you call Compile() on an Expression tree? Consider this very simple example: class Program { public int Value { get; set; } static void ...
6
votes
3answers
873 views

Can VS.NET 2010/MSBUILD produce XmlSerializers for .NET 3.5 SP1?

I just upgraded a VS 2008 solution containing WinForms, general use libraries, and a web app to VS 2010, but all projects still target .NET 3.5 SP 1. I use this technique to generate XmlSerializers ...
5
votes
2answers
1k views

How do I completely uninstall Red Gate's .NET Reflector?

When I installed .NET Reflector for the first time, it was as easy as unzipping it, dragging the folder to the appropriate place on my disk, and launching it. From within the UI, I was able to ...
5
votes
3answers
4k views

Can I use .NET reflector to modify & recompile the code quickly?

Is it possible to use .NET reflector (or an other tool) to modify & recompile the code quickly (i.e. without dumping the source and then use VS to recompile it)?
5
votes
4answers
2k views

Why can't I pass a property or indexer as a ref parameter when .NET reflector shows that it's done in the .NET Framework?

Okay, I will cut and paste from .NET reflector to demonstrate what I'm trying to do: public override void UpdateUser(MembershipUser user) { //A bunch of irrelevant code... ...
3
votes
2answers
183 views

Determine the orginal build location / path of an exe using .Net Reflector or another tool

I have an EXE that is currently deployed on our production server (c# .net 2). I have inherited the task of making some changes to this app and re-deploying. I didn't write this app and I have been ...
2
votes
3answers
93 views

Using the Reflector API to get decompiled source code

I am looking for some framework that allows decompiling a .NET assembly to get the source code. I know Reflector offers some sort of API to perform operations on assemblies, when i used it it seems ...
2
votes
1answer
49 views

Find projects targeting .net framework x in a solution - Visual Studio 2010

I was wondering if anybody knows of a way to easily find all projects targeting a specific runtime framework (I.e. 2.0, 3.5, 4.0 etc) within a Visual Studio 2010 solution. I'm working with a solution ...
2
votes
5answers
866 views

.net disassembler tool like reflector [closed]

Possible Duplicate: Open Source Alternatives to Reflector? Hi, Does anyone know if there is a tool like reflector that can reflect .net code??? Since reflector is not free anymore, i want ...
2
votes
1answer
77 views

Reflector error or optimisation?

Long story short: I used reflector on the System.Security.Util.Tokenizer class, and there's loads of goto statements in there. Here's a brief example snippet: Label_0026: if ...
2
votes
1answer
214 views

Where is the implementation of System.ServiceModel.ServiceHost.Dispose()?

I am using Reflector but I can't find System.ServiceModel.ServiceHost.Dispose(). Where is it?
1
vote
1answer
101 views

online reflector without install

I am looking for a refelector to see the code inside dll, I have a restriction that I can not install the software in the system. Is there any reflector exists which is either online or doesn't ...
1
vote
2answers
350 views

Obfuscation of .NET exe/dll [closed]

Possible Duplicate: .NET obfuscation of a DLL: how can I protect my code? Hi all, I'm using .net framework 4.0 and making any program. When i finished it, i publish it and get my programs ...
1
vote
3answers
297 views

.NET: Control Invoke() in Reflector

So, I was getting back into some .NET programming, and through a new feature in VS.NET 2010, it detected a case where I was trying to modify a control from a thread that didn't create that control, ...
1
vote
2answers
412 views

Recover WinForms from dll

We think most of the source has been recovered through .NET Reflector. A utility which export the dll as C# source. The only missing part is WinForms which is not included when .NET Reflector export ...
0
votes
3answers
128 views

.NET Reflector error in generating code

I used Reflector 6.8 to disassemble a binary. It shows the Class tree view. Even the declaration of methods of the classes , but "Expand Methods" errors out with some error like "Block statement count ...
0
votes
3answers
353 views

<PrivateImplementationDetails>{GUID}.method$$**** in code file. Doesn't compile !

We have a .NET assembly from another project where in one of the generated files from Reflector has .. snippet for a method. Now VS 2010 c# compiler throws all sorts of compile errors $$ unexpected. ...
0
votes
3answers
222 views

How to directly access .NET Reflector from VS2008

I'm sure this is very simple, but I'm having some trouble. I want to be able to disassemble a class in reflector directly from VS2008. Background: At one point I had Visual Studio 2008 working such ...
0
votes
1answer
128 views

.NET Reflector Add-in for renaming

Is there an existing .NET Reflector add-in that allows renaming of namespaces/classes/methods etc?
0
votes
1answer
186 views

Open Emitted assembly generated code appears empty in Reflector when it is not.

I'm generating a dynamic assembly using Reflection.Emit which includes a single class. I have a bug which is causing a BadImageException. To resolve this I need to see the compiled code, and therefore ...
0
votes
1answer
182 views

Odd Reflector Decompile with Invalid Token Error

Would some kind person help me sort out the output of .Net Reflector v6.5 that does not compile? I think that the symbols are out of whack but global search and replace might fix that. I don't get ...
0
votes
2answers
462 views

ReSharper: “Go To Declaration in .NET Reflector”

Do you know of a ReSharper 5.1 plugin that allows me to go to the declaration of a class or member that I do not have the source code for using .NET Reflector? Usually Reflector itself has this ...
0
votes
2answers
319 views

.Net Reflector Red and green squares

What are the green and red squares? Are these variable names and strings being purposely obfuscated? Is there a 'deobfuscator'?