Click to Rate and Give Feedback
MSDN
MSDN Library
.NET Development
Previous Versions
.NET Framework 2.0
OpCodes Class
OpCodes Fields
 Ldc_I4_7 Field

  Switch on low bandwidth view
This page is specific to
Microsoft Visual Studio 2005/.NET Framework 2.0

Other versions are also available for the following:
.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)

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
C++
public:
static initonly OpCode Ldc_I4_7
J#
public static final OpCode Ldc_I4_7
JScript
public static final var Ldc_I4_7 : OpCode

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)

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

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.

.NET Framework

Supported in: 2.0, 1.1, 1.0
Tags What's this?: Add a tag
Community Content   What is Community Content?
Add new content RSS  Annotations
Processing
© 2009 Microsoft Corporation. All rights reserved. Terms of Use  |  Trademarks  |  Privacy Statement
Page view tracker