-1

Are assemblies basically executable files? Thanks. I'm writing more because I can't bypass quality standards and it needs more words in my current problem written in.

Jaime Caffarel
  • 2,401
  • 4
  • 30
  • 42
SUNDIUS
  • 23
  • 3

1 Answers1

2

No they are not executable files. As it is stated here:

In general, a static assembly can consist of four elements:

  • The assembly manifest, which contains assembly metadata.
  • Type metadata.
  • Microsoft intermediate language (MSIL) code that implements the types.
  • A set of resources.

Actually an assembly is loaded in the runtime environemt (CLR) and the MSIL code is compiled to native code on demand (this is called just in time compliation).

Christos
  • 53,228
  • 8
  • 76
  • 108