Home
Recent Q&A
Java
Cloud
JavaScript
Python
SQL
PHP
HTML
C++
Data Science
DBMS
Devops
Hadoop
Machine Learning
Azure
Blockchain
Devops
Ask a Question
Explain Code compilation in C#.
Home
Dot Net
Explain Code compilation in C#.
+1
vote
asked
Jun 25, 2019
in
Dot Net
by
Venkatshastri
Explain Code compilation in C#.
#dotnet
#chash
#basicchash
#c#
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Jun 25, 2019
by
Venkatshastri
There are four steps in code compilation which include:
Compiling the source code into Managed code by C# compiler.
Combining the newly created code into assemblies.
Loading the Common Language Runtime(CLR).
Executing the assembly by CLR.
...