which file generated after compilation in C#?
i want to know that after compiling the file in C# which type of file is genera开发者_如何学编程ted?
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.
Probably a .dll or a .exe is the answer you are looking for
精彩评论