> Hi
>
> Can i decompile * All * the .NET applications
More or less, yes.
for extract original source ?
No. You get a decompiled source.
> Can i recompiler the source ?
Yes.
Note two things: The IL code might be obfuscted, meaning, you won't
understand it at all without heavy brain activity. Plus, while you can
decompile, it doesn't mean that it is legal to decompile the code.

Signature
Miha Markic [MVP C#, INETA Country Leader for Slovenia]
RightHand .NET consulting & development www.rthand.com
Blog: http://cs.rthand.com/blogs/blog_with_righthand/
Christof Nordiek - 23 Oct 2007 15:27 GMT
>> Hi
>>
>> Can i decompile * All * the .NET applications
<snip>
>> Can i recompiler the source ?
>
[quoted text clipped - 3 lines]
> understand it at all without heavy brain activity. Plus, while you can
> decompile, it doesn't mean that it is legal to decompile the code.
Also, you can not generate an exact same assembly, nor an assembly different
by only some code changes. You would need the private key, with wich the
assemblies where strong named
Christof
Ignacio Machin ( .NET/ C# MVP ) - 23 Oct 2007 18:47 GMT

Signature
Ignacio Machin
http://www.laceupsolutions.com
Mobile & warehouse Solutions.
>> Note two things: The IL code might be obfuscted, meaning, you won't
>> understand it at all without heavy brain activity. Plus, while you can
[quoted text clipped - 3 lines]
> different by only some code changes. You would need the private key, with
> wich the assemblies where strong named
IF the assembly is signed of course.
Hi,

Signature
Ignacio Machin
http://www.laceupsolutions.com
Mobile & warehouse Solutions.
> Hi
>
> Can i decompile * All * the .NET applications for extract original source
> ?
You can say so, the code might not look the same though, like method
variables, etc they might have different names.
Also there is a process to "obfuscate" the code, the code is transformed and
made more difficult to reverse engineer.
There is a tool called .NET Reflector that can be used to decompile .NET
assemblies. However some assemblies are obfuscated which is the code is made
hard to read and understand. Further more I know from experience that some
of the obfuscators scramble the code in a way that it crashes the reflector
tool so it is not even possible to decompile it.

Signature
Stoitcho Goutsev (100)
> Hi
>
> Can i decompile * All * the .NET applications for extract original source
> ?
>
> Can i recompiler the source ?
Ben Voigt [C++ MVP] - 23 Oct 2007 16:47 GMT
> There is a tool called .NET Reflector that can be used to decompile .NET
> assemblies. However some assemblies are obfuscated which is the code is
> made hard to read and understand. Further more I know from experience that
> some of the obfuscators scramble the code in a way that it crashes the
> reflector tool so it is not even possible to decompile it.
Yes, but disassembly is still possible, and MSIL is a much higher level
language than say Intel assembler.
>> Hi
>>
>> Can i decompile * All * the .NET applications for extract original source
>> ?
>>
>> Can i recompiler the source ?