Tuesday, March 16, 2010

What is Metadata?

During compilation, the CLR creates information about our application. It includes class names, field names, method names, and method parameters. This information is called metadata, which means information on data. Metadata is used by the CLR and the Jitter (JIT compiler) for many purposes such as debugging and type checking. We can also use metadata to create instances of the classes and use class members regardless of the source code language.

No comments:

Post a Comment