OpCodes Fields


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

Pushes a new object reference to a string literal stored in the metadata.

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

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

value = OpCodes.Ldstr
C#
public static readonly OpCode Ldstr
Visual C++
public:
static initonly OpCode Ldstr
JScript
public static final var Ldstr : 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

72 < T >

ldstr mdToken

Pushes a string object for the metadata string token mdToken.

The stack transitional behavior, in sequential order, is:

  1. An object reference to a string is pushed onto the stack.

The ldstr instruction pushes an object reference (type O) to a new string object representing the specific string literal stored in the metadata. The ldstr instruction allocates the requisite amount of memory and performs any format conversion required to convert the string literal from the form used in the file to the string format required at runtime.

The Common Language Infrastructure (CLI) guarantees that the result of two ldstr instructions referring to two metadata tokens that have the same sequence of characters return precisely the same string object (a process known as "string interning").

The following Emit method overload can use the ldstr opcode:

  • ILGenerator.Emit(OpCode, string)

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