.NET Reflector® is a proprietary software utility for Microsoft .NET combining class browsing, static analysis and decompilation, originally written by Lutz Roeder. Red Gate acquired it in 2011 and have since added live debugging of assemblies without requiring original source!

learn more… | top users | synonyms

1
vote
2answers
46 views

Goto in the ElementAt extension method

I was looking some code generated by .NET Reflector of the Linq extension method ElementAt, and I see this code: public static TSource ElementAt<TSource>(this IEnumerable<TSource> source, ...
-1
votes
1answer
49 views

Net Reflector decompile issue - wrong method names etc

Hello i try to restore 1 of my old app's source code, i tried to do it via NetReflector 8.1, but when i use it all the method / vars names are weird and incorrect for example: ...
0
votes
2answers
18 views

Using Redgate Reflector tool, what does it mean when some class names are light grey?

I'm using Reflector and can see some class names are black and others are light grey. I tried doing a search for what this means and could not find a user guide or anything to indicate what this ...
-2
votes
0answers
12 views

Reflector can not use in VS, Why, and How to Restore? [closed]

   Reflector is a very, very good Tools for C#, though as a newer, I can only use F12(go to definition) to look up the Details of the Class Lib.    Today I encounter a Problem : ...
-5
votes
0answers
49 views

Decompile a Dll,edit it and again recompile it [closed]

I have a Dll, I used .net reflector to decompile it.I extract source code from dll and edit it.But problem is this,I can't recompile it again with same software.
-1
votes
0answers
19 views

Autodiagrammer don't work

when i use AutoDiagrammer program in Stand Alone form, the error that shown bellow has occurs: and when i want use AutoDiagrammer plugin in Reflector, this message has shown: "Waiting for assembly" ...
-2
votes
1answer
138 views

.net Reflector decompiled C# code won't compile

I tried to decompile a C# console application and compile it again in Visual C# 2010, but there are many errors in the code. Here is an example: public static Test mTest { ...
0
votes
1answer
48 views

How I can modify InternalsVisibleTo in assembly using Reflexii?

I would to modify InternalsVisibleTo attribute value in assembly? In Reflector I see [assembly: InternalsVisibleTo(AssemblyName)] but I don't see AssemblyInfo.cs which I can modify. If it possible I'd ...
1
vote
1answer
96 views

How to get source code from native dll ?

How can i get source code from native dll ? With Reflector no luck.
8
votes
2answers
220 views

Where to store sensitive data in a C# assembly?

Given that a C# assembly can be easily reverse engineered using reflector, where should I store my sensitive data when compiling an assembly in C#? I have a X509certificate embedded in my C# assembly ...
3
votes
1answer
69 views

List in Reflector

The MSDN docs say List collections derive from: System.Collections.Generic.List But when I pull up .NET Reflector 6 this is what I see in System.Collections.Generic: BitHelper ISet ...
0
votes
1answer
74 views

Extracting assembly from SQL Server database after backup

I have following situation. I got backup database file - *.bak. I restored it locally and everything works fine except I I'm unable to get my hands on the .dll assemblies. Obviously I can't look up ...
1
vote
0answers
23 views

CLI Reflector How to store type objects that can be used by constructor

I will try to make myself as clear as i can :). I want to implement some kind of an interpreter and i would like to be able to somehow store classes not as object but more like as blueprint which ...
1
vote
1answer
107 views

Reflexil deobfustication error

I'm trying to modify a .net application and I'm new to this. First step is attempting to deobfuscate the code using reflexil and I get the following error: Reflexil is unable to clean this assembly: ...
0
votes
2answers
84 views

How to enable .NET Reflector to pick the right version of .NET compiled assembly?

I am having a simple problem regarding .NET reflector. I have decompiled the assembly manually from .NET Reflector, exported its code and recompiled its code manually from Visual Studio and generated ...
2
votes
2answers
134 views

How to debug .NET Code packed in .NET assembly (running as Seperate Software ) [closed]

I have a software ( PULSE Time Data Recorder ). Of course I don't have its code. But I can look into its code via .NET Reflector. I want to debug this code and to see how function calls are working in ...
2
votes
0answers
165 views

Load WPF application from the memory

So this is how you invoke Main() in non WPF applications: var entry = assembly.EntryPoint; if (assembly.EntryPoint.GetParameters().Length == 0) entry.Invoke(null, new object[0]); else ...
2
votes
2answers
470 views

Converting some C# code to managed or C++/CLI code

I have an existing C# application. What I want is to write native code for some part of the c# application for speed improvement while another part using C# app and the other part using C++/CLI to ...
1
vote
1answer
218 views

How to edit code inside a jar? [duplicate]

Possible Duplicate: Changing the code of the class from jar file I'm coming with this from .Net, where there's Reflector and Reflexil, enabling me to open an assembly and edit its code ...
2
votes
2answers
154 views

decompile assembly into project

I will like to see the value of some private variables of the Regex class located on System.dll. If curious why I will like to twick that class look at this question. So I will have to decompile ...
0
votes
0answers
155 views

Removing duplicate references with reflexil/.net reflector?

So right now I'm trying to use the "Replace all with code" feature in reflexil in .net reflector, but when I compile, I always get this same exact error: [CS1703] An assembly with the same ...
4
votes
2answers
158 views

C# for-loop loop-expression syntax

I have a nice question about the loop-expression of a for-loop in C#. I always like to learn and extend my knowledge so I often use my reflector to look and learn from other. Lately I was looking ...
0
votes
2answers
186 views

This code in VB net

I have decompiled an vb.net application with reflector All string are encrypted with this method: Public Shared Function smethod_0(ByVal string_0 As String) As String Dim length As Integer = ...
0
votes
2answers
341 views

What is the ampersand character at the end of an object type?

I had to de-compile some code and I don't know what this syntax is? Can ya'll help, or point me to a write-up about what it is? I've googled and searched this site and can't find anything. Just one ...
0
votes
0answers
75 views

Reflector.NET cannot debug application

I have the next example application: The main assembly has 5 referenced assemblies. But these assemblies located in resources and main app loads them on event: AppDomain.CurrentDomain.AssemblyResolve ...
1
vote
3answers
319 views

Preventing .NET reverse engineering/decompilation

Is there any way to stop .NET Reflector working at a program? For example: I am developing a program that has confidential data (like gMail address and password), and I don't want to someone can see ...
1
vote
1answer
270 views

Assembly Changes With Reflexil Have No Effect

i'm trying to change a DLL of a Net 4.0 Application with Reflexil. The directory looks like this: Main.exe SomeOther.exe Lib1.dll Lib2.dll Lib3.dll ... Now I'm trying to change some IL code in any ...
2
votes
1answer
304 views

Changing assembly version with reflexil

I was trying out the Reflexil plugin for Reflector v7.4. Everything it promised about code change worked fine. Then I wanted to change some assembly attributes mainly the version and was successful ...
-3
votes
2answers
469 views

Generic Argument Error [closed]

Hi im trying to fix this code in order to compile and cant find a way ERROR: Pro\AGeeksToy\Controls\LadderHeader.cs(218,98): error CS0426: The type name 'menuData' does not exist in the type ...
0
votes
3answers
151 views

C# Generic Type error after reflector

I exported a source with reflector and i fix alot of problems there is one i haven't be able to. EnhancedTypeSubMenu!1.cs(28,27): error CS0305: Using the generic type ...
1
vote
2answers
358 views

MonoTouch to objective C

In .NET if you compile something it is possible to decompile it and see the source code using programs such as Reflector. I know the basics of Objective C and will rather try to use Objective C than ...
3
votes
2answers
113 views

+= Operator in reflector?

Im trying to find the += in reflector in order to see how they implemented : a=+1 vs a=a+1 but I cant find it. any help ?
1
vote
1answer
148 views

Namespace of an instruction .NET Reflector

In previous release of .NET Reflector, I was able to get the namespace of an instruction inside a function but now I can't and the doc does not exist. Red Gate's .NET Reflector 6.8.2.5 (last free ...
0
votes
0answers
216 views

Where to find EcmaPublicKey.snk for a dll?

I am not so familiar to .snk files but I am doing some tricky things (just for testing) with reflector and a .net framework assembly. The problem is that I need to sign this assembly (when ...
3
votes
4answers
127 views

.NET implementation: Double conversion in Math.Min(float, float)

Why does .Net implement the Math.Min(float, float) function like so: public static float Min(float val1, float val2) { if ((double) val1 < (double) val2 || float.IsNaN(val1)) return val1; ...
1
vote
2answers
965 views

Can't load FSharp.Core version 4.0.0 in infer.net fun // hard link dependency in a dll ?

I am trying Infer.Net (An F# Library for Probabilistic Programming) And running the examples in VS11 Beta lead to the error : Could not load file or assembly 'FSharp.Core, Version=4.0.0.0, ...
2
votes
3answers
405 views

Passing class objects across different assembly versions

The scenario goes like this - I have an assembly say 'MyAssembly'. An interface say 'IMyInterface' is defined in this assembly. In the same assembly i have one class(MyClass) with a method define in ...
0
votes
2answers
452 views

Decompile Asp.Net web site Project

we have an application in production and the code is in Pre-Compiled form. And I could'nt reach any source code. I searched a few web site, they suggest Reflector so used Reflector to get code behind ...
2
votes
4answers
724 views

c# protect a database connection string in Settings prevent Decompiling?

Is there anyway to prevent people from using Reflector.net to decompile my .exe c# application? I know there is a tons of post about this but I don't really care if people can see my code the only ...
3
votes
3answers
450 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 ...
3
votes
1answer
291 views

Reflection Gurus: Why aren't my MethodInfo objects equal?

Basically, some internal check that happens in the static System.Linq.Expressions.Expression.Bind() method says "Method is not a property accessor" on my property that is clearly a property. Using ...
0
votes
1answer
76 views

CachedAnonymousMethodDelegate1 in code disassembled from reflector

I'm exploring the possibility of porting silverlight's System.ComponentModel.DataAnnotations to the desktop in order to reuse validation done in my silverlight business objects (don't ask...). The ...
5
votes
1answer
593 views

How to get a nice class diagram for built-in .net classes?

To get an overview for the CodeDom classes in .Net I tried to create a class diagramm using Visual Studio 2010 built-in class designer, but I did not find the way how I could feed the .Net built-in ...
5
votes
1answer
113 views

Can't see how the compiler uses the classes he creates for my closures

I wrote this very basic programm to examine what the compiler is doing behind the scenes: class Program { static void Main(string[] args) { var increase = Increase(); ...
0
votes
3answers
865 views

Decompile with Reflector

I have done decompile the code. But instead of display string, it display an negative number. How can I find the original string? My decompiled code like this: string str = .(-812265445); it ...
2
votes
1answer
492 views

Reflector generated Lambda Expression, how to get back back actual Linq Query?

I'm using Reflector to decompile some binaries. I'm having problem with Lambda Expressions and methodof which doesn't compile. lambda Expression seems super complicated to me and I have no idea how to ...
0
votes
1answer
399 views

How do WF4 parse the Expressions?

How do WF4 parse expressions and return the values. for example the If activity has the Condition attribute that we can write expression like [ true = true ] or [ "str" = "str" ] or guids... what is ...
0
votes
1answer
104 views

Reflect WF4 System.Activities [duplicate]

Possible Duplicate: Reflector Not Decompiling 'System.Data.Entity.dll' .NET 4.0 I want to reflect the WF4 System.Activities assembly. The problem is when i open it in the reflector ...
1
vote
0answers
126 views

Code Errors C# .NET Reflector

After I restored my PC, I lost all my projects, I had the executable file sent to me from one of my friends. I decompiled my old projects with Reflector, seeing as it's the best tool for the job. I ...
0
votes
1answer
137 views

Why Reflector ver 7 produced wrong Linq code like this [closed]

private FileStorageFolder GetCapsuleContentFolder(FileStorageDataContext db) { IQueryable<FileStorageFolder> source = from dbFolder in db.FileStorageFolders where (dbFolder.ParentID ...

1 2 3 4