Hello i deleted my old project from repos but i want to edit it again but i don't know how to do.
I want to edit form and my codes please help.
My project:
Hello i deleted my old project from repos but i want to edit it again but i don't know how to do.
I want to edit form and my codes please help.
My project:
You can try what is suggested here : How do I decompile a .NET EXE into readable C# source code?
The purpose is to deassemble the code to be able to edit it again. But you will have some work to do cause the code will probably be quite different from the one you wrote.
Do you have you .soln file anywhere with the source code? You can use visual studio to open that. Did you delete the repo or did you just delete all your code and push that change up to your repo? if its the latter, i would look into how to revert your codebase to a previous revision
Otherwise, the only thing i can think of doing is running your exe and dlls through a de-compiler but the code will not be the same as when you wrote it.