zoukankan      html  css  js  c++  java
  • Verbal Description of Custom Attribute Value

       Version 2.0 of the ILAsm compiler supports the verbal description of the custom attribute value blob. This makes reading and writing the custom attribute values quite a lot easier.
       The definition of a serialized primitive type is similar to the definition of the fields’ and properties’ initialization values (see Chapter 9). For example, the value 0x1234 of an int32 parameter from the previous section is expressed as int32(0x1234). The values of Boolean parameters are expressed as bool(true) or bool(false).
       The definition of a string begins with the keyword string, followed by the single-quoted string value in parentheses. For example, the string Common Language Runtime from the previous section would be represented as string('Common Language Runtime'). To express a null-reference string, the construct string(nullref)
    is used.
       The definition of the serialized types (instances of [mscorlib]System.Type) begins with the keyword type, followed either by the type name in ILAsm notation or by keyword class and the single-quoted class name in Reflection notation:

    type([OtherAsm2]MyNamespace.MyEnclosingClass/MyNestedClass)

    or

    type(class 'MyNamespace.MyEnclosingClass+MyNestedClass, OtherAssembly,Version=1.2.3.4,PublicKeyToken=0102030405060708, Culture=fr-CA')

       To express a null-reference type, the construct type(nullref) is used.
    The definition of a boxed value of a primitive value type begins with the keyword object, followed by the definition of the primitive type in parentheses, such as object(int32(0x1234)).
       The definition of an array contains the element count in square brackets and the space-delimited sequence of values in parentheses, such as

    int32[3](123 456 789)

    or

    string[4]('One' 'Two' 'Three' 'Four').

       The definition of a name/value pair, denoting the initialization of a field or a property,begins with the keyword field or property, respectively, followed by the type of the field(property) and its name, followed by the equality symbol and the definition of the serialized initialization value as described previously. For example:

    field int32[] xxx = int32[3](1 2 3)
    property 
    string yyy = string('Hello World!')
    property enum MyEnum yyy = 
    int32(2)

       All definitions of the serialized initialization values comprising the custom attribute value blob are written in space-delimited sequence and enclosed in curly braces.

  • 相关阅读:
    基于小脚丫DDS 调频 调幅 调相 切换波形 AD5601输出模拟波形
    spi 10方式编写
    VGA colorbar显示
    hostname
    让CentOS能用yum自动安装rar和unrar
    Centos系统使用代理上网时 yum的代理设置
    【转】uvm 与 system verilog的理解
    跟我一起学习VIM
    gVim 配置方案 采用Vundle管理插件
    在 Ubuntu 16.04 中安装谷歌 Chrome 浏览器
  • 原文地址:https://www.cnblogs.com/Jax/p/1336122.html
Copyright © 2011-2022 走看看