Restoring my source code
Hello, I have built a simple C# app, and i debugged it and only got the .config, .exe and .pdb files saved, I lost the project solution files & I wanna get back and have a look at my source code, any solution?
5 Replies
If there's no source code, there's no source code
Restore it from Github or another backup
Try dotPeek - but it still is not the original source code.
It is the optimized source code (if release) which can be weird.
If there are no backups... well, we all learn from mistakes
you can at most decompile it, but it won't bring back the original source completely
Alright, thanks for the help!