OpCodes Fields


.NET Framework Class Library
OpCodes..::.Ldc_I4_7 Field

Pushes the integer value of 7 onto the evaluation stack as an int32.

Namespace:  System.Reflection.Emit
Assembly:  mscorlib (in mscorlib.dll)
Syntax

Visual Basic (Declaration)
Public Shared ReadOnly Ldc_I4_7 As OpCode
Visual Basic (Usage)
Dim value As OpCode

value = OpCodes.Ldc_I4_7
C#
public static readonly OpCode Ldc_I4_7
Visual C++
public:
static initonly OpCode Ldc_I4_7
JScript
public static final var Ldc_I4_7 : OpCode
Remarks

The following table lists the instruction's hexadecimal and Microsoft Intermediate Language (MSIL) assembly format, along with a brief reference summary:

Format

Assembly Format

Description

1D

ldc.i4.7

Pushes 7 onto the stack.

The stack transitional behavior, in sequential order, is:

  1. The value 7 is pushed onto the stack.

This is a special short encoding for the push of the integer value 0. All special short encodings push 4 byte integers on the stack.

The following Emit method overload can use the ldc.i4.7 opcode:

  • ILGenerator.Emit(OpCode)

Platforms

Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Version Information

.NET Framework

Supported in: 3.5, 3.0, 2.0, 1.1, 1.0
See Also

Reference

Tags :


Page view tracker