Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recovering lost project files

Status
Not open for further replies.

cjelec

Programmer
Jan 5, 2007
491
GB
Yes, it's happened :-(

I was in the middle of coding, and also in the middle of backups when I had a hdd failure. I have recovered most of my files, including a debug build of my project. But I am missing some key classes that will take me days to write/test...

Is there a way to decompile a project from the debug build?

Thanks
 
cjelec,

You are in a tough situations. Try using .NET decompiler. But they are not free. Their Demos are available though. I recommend using Decompiler .NET by Jungle Creatures Inc from
Other good one is Xenocode Fox from
Sometimes I use a combination of both and post of the time I reverse-engineer my required code successfully.

Hope it helps.
 
Thanks for your links,

I tried Decompiler.NET, it worked but the output is only in c# and the trial version does 50% of the code, which is a start and I know there are ways to convert the code back to vb.

I haven't tried xenocode yet.

Thanks again


Another question,

Has anyone tried Anakrino (found at:
 
cjelec,

I use a combination of Decompiler.NET (licensed) and Xenocode Fox (Demo) when needed. I feel no problem working in C#. But you can use a converter from C# to VB.NET. They are available and some of them have GPL licensing.

Another suggestion is; if you have a small number of classes to decompile, then use Xenocode Fox. Its demo version does not allow you to save the source code but you can copy-paste the code from Xenocode Fox to your code files. It supports C#, VB.NET and MSIL languages.

Hope it helps.

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top