OpCodes.Stind_R4 字段

定义

在所提供的地址存储 float32 类型的值。

public: static initonly System::Reflection::Emit::OpCode Stind_R4;
public static readonly System.Reflection.Emit.OpCode Stind_R4;
 staticval mutable Stind_R4 : System.Reflection.Emit.OpCode
Public Shared ReadOnly Stind_R4 As OpCode 

字段值

注解

下表列出了指令的十六进制和 Microsoft 中间语言 (MSIL) 程序集格式,以及简短的参考摘要:

格式 程序集格式 说明
56 stind.r4 float32 值存储在给定地址。

堆栈过渡行为(按顺序排列)是:

  1. 将地址推送到堆栈上。

  2. 将值推送到堆栈上。

  3. 值和地址从堆栈中弹出;值存储在地址中。

指令 stind.r4 将值存储在 float32 提供的地址处, (类型 native int为 、 *&) 。

类型安全操作要求以 stind.r4 与指针类型一致的方式使用指令。 指令的操作 stind.r4 可以通过紧靠前面的 VolatileUnaligned 前缀指令来更改。

NullReferenceException 如果 addr 指令后缀所暗示的参数类型未自然对齐,则引发 。

以下 Emit 方法重载可以使用 stind.r4 操作码:

适用于