zoukankan      html  css  js  c++  java
  • 推荐一篇介绍.NET MetaData的文章

    文章地址(pdf文件): http://www.develop.com/conferences/conferencedotnet/materials/N4.pdf

    文章目录:

    1.         What Is Metadata?

    2.         Metadata Object Overview

    3.         The Reflection API

    4.         The Unmanaged API

    5.         Type Signatures & Tokens

    6.         Tools And Demo

    7.         Wrap-up And Resources

    文章内容摘录:

    Metadata Usage In .NET

    Ø         The .NET runtime relies heavily on metadata to link together calls and data references at runtime

    Ø         Metadata is stored in a binary format, and subject to change

    Ø         Microsoft provides .NET classes and classic COM interfaces to read and write metadata

     

    The Advantage Of Metadata

    Ø         A shared standard of representing information between any .NET compatible language

    n         Cool benefit: Intellisense for any .NET component

    Ø         Metadata is automatically generated and consumed by .NET compilers

    n         No need to create .IDL files to expose your code to others

    n         No need to mess around with .H files and import libraries

     

    Emitting Metadata

    Ø       Metadata (and associated IL) can be created using the .NET runtime

    n         Compilers aren’t the only ones that get to play!

    Ø       System.Reflection.Emit classes are the basis for dynamically creating code:

    n         AssemblyBuilder

    n         MethodBuilder

    n         ILGenerator

    n         Many more!

    Ø Focus in this presentation is consuming metadata
  • 相关阅读:
    【案例】图片上传
    BOM相关知识点
    【案例】图片无缝轮播效果
    DOM相关知识点
    【案例】雪花飘落效果
    DOM节点克隆
    DOM节点的创建、插入、删除
    【案例】列表全选、全不选、反选
    AJAX相关概念及应用
    解决跨域问题
  • 原文地址:https://www.cnblogs.com/dudu/p/7310.html
Copyright © 2011-2022 走看看