Answer Posted / ravikiran gullapalli
assembly manifest - An integral part of every assembly that
renders the assembly self-describing. The assembly manifest
contains the assembly's metadata. The manifest establishes
the assembly identity, specifies the files that make up the
assembly implementation, specifies the types and resources
that make up the assembly, itemizes the compile-time
dependencies on other assemblies, and specifies the set of
permissions required for the assembly to run properly. This
information is used at run time to resolve references,
enforce version binding policy, and validate the integrity
of loaded assemblies. The self-describing nature of
assemblies also helps makes zero-impact install and XCOPY
deployment feasible.
metadata - Information that describes every element managed
by the common language runtime: an assembly, loadable file,
type, method, and so on. This can include information
required for debugging and garbage collection, as well as
security attributes, marshaling data, extended class and
member definitions, version binding, and other information
required by the runtime.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Different between method overriding and method overloading?
Why should you override the tostring() method?
If a class derives from another class, will the derived class automatically contain all the public, protected, and internal members of the base class?
What is difference between array and collection?
What is Implementation inheritance
What is extension method in c# and how to use them?
What is int32 in c#?
How do we achieve encapsulation in c#?
How many bytes is an int in c#?
What is poco c#?
How to implement a singleton design pattern in c#?
Why do we need to call CG.SupressFinalize?
Can abstract class have constructor?
What is datasource c#?
What are indexers in c# .net?