Statistics
The Highest Post







Statistics
Count 94
Avg 21.00
Min 21
Max 21
Angualr Top questions

Details



Peter Agyekum Explain how code gets compiled in C#? It takes 4 steps to get a code to get compiled in C#. Below are the steps:<br><br> First, compile the source code in the managed code compatible with the C# compiler.<br> Second, combine the above newly created code into assemblies.<br> Third, load the CLR.<br> Last, execute the assembly by CLR to generate the output.<br>
Related Topics