|
-
May 23rd, 2009, 07:26 PM
#1
Thread Starter
Member
Convert from exe to sln file
I want to ask you. how can i convert from exe file to solution file.
i am not sure it is possible or not.
thanks...
-
May 23rd, 2009, 07:49 PM
#2
Re: Convert from exe to sln file
Google: 'Decompiling .NET'
-
May 23rd, 2009, 08:04 PM
#3
Thread Starter
Member
Re: Convert from exe to sln file
Ok, thanks.
I am trying now
-
May 23rd, 2009, 08:08 PM
#4
Re: Convert from exe to sln file
The short answer is that you can't. An EXE is the product of compiling a project. An SLN file is just used to manage a solution, which is made up of multiple projects. What you can do is create a new solution, which will contain a single project by default. You can then use tools to decompile an EXE file to get its original source code. You can then paste that source code into classes that you've added to your own project.
I'm not sure whether there's a tool that will create a project for you automatically but I've never seen one. You can certainly use .NET Reflector to see original source for an EXE and copy it.
-
May 23rd, 2009, 08:19 PM
#5
Thread Starter
Member
Re: Convert from exe to sln file
Thank you.
But i dont know orginal code after recovery. because it is very many forms.
so how dose that code organize ?
-
May 23rd, 2009, 08:24 PM
#6
Re: Convert from exe to sln file
 Originally Posted by Nguyendangtruong
Thank you.
But i dont know orginal code after recovery. because it is very many forms.
so how dose that code organize ?
That's up to you to work out, if you even have the legal right to do so.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|