Print this page
Friday, 28 December 2012 13:55

how c# applications run?

Written by 
Rate this item
(0 votes)
c# is a managed programming language.

so it requires
.net common language runtime to execute.main point is
when an application written in c# executes,the
common language runtime managing memory,performing
garbage collection,managing exceptions,providing many
services that you as a developer no need to write
code for.

the CLR understands intermediate language(IL) which
produced by c# compiler instead of producing machine
language.seeing the IL,CLR Just in time(JIT) compiles
it into compiled machine code within memory and then
executes it as mentioned before.

so because c# requires CLR,you have to have CLR installed
in the system.major operating systems come with the
CLR version and also it is available by windows update.
CLR is part of the .Net so when you see updates for
runtime of .Net framework,it must contains the FCL(
.Net framework class library) and the CLR.

Read 2509 times
Super User

Email This email address is being protected from spambots. You need JavaScript enabled to view it.
7