Tagged Questions

5
votes
2answers
175 views

ILSpy, how to resolve dependencies?

I want to disassemble an entire .NET assembly with ILSpy. I used this code as base: http://skysigal.xact-solutions.com/Blog/tabid/427/entryid/2488/Default.aspx And it works fine, just when I have an ...
2
votes
3answers
106 views

why can we decompile .NET assemblies easily?

as the question title say, what's the main reason that why we can decompile .NET exe files easily? there are many softwares that i can obfuscate my application codes, but why it needs to obfuscate for ...
1
vote
3answers
72 views

Good Tool to analyse assembly dependency in .NET application [closed]

I know there are many tools. I want to find out a good tool to show me what assembly is missing. I encountered an exception saying that one of the dependency assembly might be missing when I tried to ...
1
vote
1answer
75 views

C# Commandline decompiler

I'm looking to decompile a lot of assemblies into C#. I found several tools that do a visual decompile. However I was wondering if anyone knew of a tool that can do decompile by command line (similar ...
1
vote
5answers
153 views

How Can I Protect My C# Code From Being Decompiled? [closed]

Possible Duplicate: .Net Obfuscation Alternative for Obfuscation in the .NET world Just a few minutes ago, I read that there are a number of tools, many free, that allow you to convert a ...
1
vote
4answers
159 views

Is this valid C# code?

Is this valid C# code ? public class Product { [CompilerGenerated] private string <Name>k__BackingField; [CompilerGenerated] private decimal ...
1
vote
4answers
512 views

How to decompile pdb to get C# source code?

My scenario: I want to write in log file part of code where exception has happened (for example 5 lines before and 5 lines after line where exception happened - or at least all the code of that ...
1
vote
3answers
338 views

How to make Reflector not Choke on new syntax

Is there a way to make reflector disassemble back to the new c# constructs? Auto-Implemented properties are coming out like this: [CompilerGenerated] private string <TypeName>k__BackingField; ...
1
vote
2answers
1k views

How to compile the dll back after decompile C# dll?

I use reflector to decompile a asp.net dll, after that I find the bug and fixed it, now I want to compile it back to a dll, then I can deploy, but it seems that I can't how can I do this ?
1
vote
1answer
156 views

What is the C# equivalent to JAD?

What is the C# equivalent to Java's JAD and is there a VS plugin similar to Eclipse's JadClipse?
0
votes
1answer
446 views

Decompile Class that have resource file

I've been decompiled an aplication exe to learn about how they handle command. But I do not know exactly what type of the following file.because the file is inherit from superclass that inherit from ...
-2
votes
2answers
331 views

dotnet dll decompile and change the code

I need to change the code of the .NET DLL. I am able to see the code by compilable the DLL with .NET reflector, but I am not able to change the code of the DLL. With .NET Reflector, I decompile the ...