Answer Posted / rajsekhar
Metadata is the complete way of describing what is in
a .NET assembly. Digging into the metadata yields the types
available in that assembly, viz. classes, interfaces,
enums, structs, etc., and their containing namespaces, the
name of each type, its visibility/scope, its base class,
the interfaces it implemented, its methods and their scope,
and each method?s parameters, type?s properties, and so on.
The assembly metada is generated by the high-level
compilers automatically from the source files. The compiler
embeds the metadata in the target output file, a dll,
an .exe or a .netmodule in the case of multi-module
assembly. In the case of a multimodule assembly ever module
that contains IL must have the metadata embeded in it to
describe the types in that module. Every compiler targeted
for the .NET CLR is required to generate and embed the
metadata in the output file, and that metadata must be in a
standard format. .NET Reflection extensively uses the
metadata information to know the type information
dynamically
Manifest:
Metadata describes the contents in an assembly, whereas the
manifest describes the assembly itself, providing the
logical attributes shared by all the modules and all
components in the assembly. The manifest contains the
assembly name, version number, locale and an optional
strong name that uniquely identifying the assembly. This
manifest information is used by the CLR. The manifest also
contains the security demands to verify this assembly
| Is This Answer Correct ? | 15 Yes | 3 No |
Post New Answer View All Answers
What are virtual destructures?
What are the improvements made in cas in .net 4.0?
Is .net is a language?
Tell us what is the native image generator?
Differentiate between managed and unmanaged code?
What is a .DLL and .EXE files called in .NET?
Explain clr, cts and cls?
What is RPC? What is the use of it?
why you wouldn't want to write into it even if you could
What is the difference between .net 2000 and .net 2005(features)? Which one is better?
How do we access crystal reports in .net?
Do you know what is .net standard?
How do you generate a strong name?
Define satelite assembly?
What is the difference between a namespace and assembly name in .net?