What is IL code, CLR, CTS, GAC & GC?

John Irron

New member
Joined
Nov 7, 2011
Messages
3
Programming Experience
1-3
I have been searching for this question relevant answer a very long so please, thanks
 
ILcode is linker code, Common Intermediate Language, akin to assembly but for .net
CLR is Common Language Runtime, it's the .net framework runtimes you download to run .net apps.
CTS is Common Type System, a set of datatypes used by all .net languages
GAC is the Global Assembly Cache, formerly good ole C:\Windows\System32 DLL nest. The GAC contains all assemblies (i.e. DLL's) that need to be available globally. It's best practice to only put what you absolutely need to in there.
GC is garbage collection, (automatic) memory management.
 
Back
Top