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
When should we use sealed class in c#?
Explain About friend and Protected friend
What is default parameter in c#?
What is concatenation and when should it be used?
Why do we need escape characters?
Is it possible to force garbage collector to run?
What is cosole application?
Why do I get a syntax error when trying to declare a variable called checked?
explain the three services model commonly know as a three-tier application.
What is marshalling and what are different kinds of marshalling?
What is unsigned int?
Is an array an object c#?
What is inheritance c#?
What are object pooling and connection pooling and difference? Where do we set the Min and Max Pool size for connection pooling?
What does it mean to override a method?