When you create and compile an application in C#, what all are the files get generated in Debug folder
When you will create and compile a program in C#, you will see below files in Debug folder.
- exe – the ‘normal’ executable
- vshost.exe – a special version of the executable to aid debuging; see MSDN for details
- pdb – the Program Data Base with debug symbols
- vshost.exe.manifest – a kind of configuration file containing mostly dependencies on libraries
No comments