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...
Printable View
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...
Google: 'Decompiling .NET'
Ok, thanks.
I am trying now
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.
Thank you.
But i dont know orginal code after recovery. because it is very many forms.
so how dose that code organize ?