I am learning concepts related to .NET framework. I am confused at one point. From what I understand the compilers CSC.exe and AL.exe compiles the files to form assembly based on the switches. So my question is 1) Different compilers in .NET framework targets the CLR. So does this mean that individual files(code) and resource files are compiled to form an assembly and this assembly is executed at runtime by the CLR?
2) How does this happen when I use Visual Studio .NET?
Thanks.