Click here to Skip to main content
15,886,857 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
For example we write simple addition program in console application of visual studio. And we press F5. After press F5 how CSE.exe will call? who is responsible for this?
Posted

First of all, it's CSC.EXE and not CSE.EXE. (CSharp Compiler)
Better to read some tutorials and good if you can refer a book rather than asking such questions here.
Follow these links-
Introduction to the C# Language and the .NET Framework[^]
Overview of the .NET Framework[^]
Step Involved in .NET application execution[^]


Hope, that helps :)
 
Share this answer
 
Most likely, it's done indirectly via MSBuild.exe; at least, it would be logical. MSBuild works according to the project file standard which abstracts out and integrates all build tools. Please see:
https://msdn.microsoft.com/en-us/library/dd393574.aspx[^],
https://msdn.microsoft.com/en-us/library/0k6kkbsd.aspx[^].

—SA
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900