-1

i want to know that after compiling the file in C# which type of file is generated?

Rajan Patekar
  • 105
  • 1
  • 7

2 Answers2

0

Probably a .dll or a .exe is the answer you are looking for

stuartjsmith
  • 431
  • 4
  • 8
0

It would have to depend on the type of project. If it is a console application it will be an exe file. If there are multiple projects and one console app then the other projects will be compiled as DLL files. Obviously this doesn't include web projects.

Steve
  • 50,173
  • 4
  • 32
  • 41