|
|
|
date: Thu, 3 Jul 2008 18:10:31 +0500,
group: microsoft.public.dotnet.framework
back
Re: C# App Decompiling question
Yea, it's quite easy to do. The only trouble will be variable names, but
all functions, flasses and namespaces will be normal.
Minimal solution is to use Dotfuscator. You can find it in
Tools->Dotfuscator in VS2008.
On Thu, 03 Jul 2008 09:10:31 -0400, Barry wrote:
> Hi
>
> Is it possible to decompile a C# developed .exe file (release version)
>
> Note: i am not interested in decompiling any app, but want to know if
> this
> can be done, cause i often send my app in debug versions, to clients who
> have not yet paid for the job, need to know the possibilities.
>
> TIA
> Barry
>
>
>
--
Using Opera's revolutionary e-mail client: http://www.opera.com/mail/
date: Thu, 03 Jul 2008 10:58:44 -0400
author: Ilya Albrekht
Re: C# App Decompiling question
> You can also use ildasm.exe to decompile to IL code, change it, and
> ilasm.exe to recompile
It's even easier. There's a nice add-in to Reflector that will do this for
you. It will even let you add new code to a single function and rebuild the
assembly.
Andrew Faust
"Jason Newell" wrote in message
news:uT8vhhS3IHA.4448@TK2MSFTNGP05.phx.gbl...
> Barry,
>
> You need to download "Reflector for .NET" at
> http://www.aisto.com/roeder/dotnet. It will demonstrate how easy it is to
> reverse engineer .NET apps. You can also use ildasm.exe to decompile to
> IL code, change it, and ilasm.exe to recompile.
>
> Jason Newell
> www.jasonnewell.net
>
> Barry wrote:
>> Hi
>>
>> Is it possible to decompile a C# developed .exe file (release version)
>>
>> Note: i am not interested in decompiling any app, but want to know if
>> this can be done, cause i often send my app in debug versions, to clients
>> who have not yet paid for the job, need to know the possibilities.
>>
>> TIA
>> Barry
>>
>>
>>
date: Fri, 11 Jul 2008 11:11:58 -0600
author: Andrew Faust
|
|