"An assembly is a file that is automatically generated by the compiler upon successful compilation of every .NET application. It can be either a Dynamic Link Library or an executable file. It is generated only once for an application and upon each subsequent compilation the assembly gets updated. The entire process will run in the background of your application."
I suggest you read the entire article ... neat stuff...
also check msdn
"An assembly is a file that is automatically generated by the compiler upon successful compilation of every .NET application. It can be either a Dynamic Link Library or an executable file. It is generated only once for an application and upon each subsequent compilation the assembly gets updated. The entire process will run in the background of your application."
I suggest you read the entire article ... neat stuff...
also check msdn
Thanks DeepBlue,
I just read more about Assmbly.If Assembly creation is the task of the compiler then what is the use of AssemblyLinker. exe tool provided with SDK?
Comment