Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

ISymbolWriter.DefineLocalVariable Method (String, FieldAttributes, Byte(), SymAddressKind, Int32, Int32, Int32, Int32, Int32)

 

Defines a single variable in the current lexical scope.

Namespace:   System.Diagnostics.SymbolStore
Assembly:  mscorlib (in mscorlib.dll)

Sub DefineLocalVariable (
	name As String,
	attributes As FieldAttributes,
	signature As Byte(),
	addrKind As SymAddressKind,
	addr1 As Integer,
	addr2 As Integer,
	addr3 As Integer,
	startOffset As Integer,
	endOffset As Integer
)

Parameters

name
Type: System.String

The local variable name.

attributes
Type: System.Reflection.FieldAttributes

A bitwise combination of the local variable attributes.

signature
Type: System.Byte()

The local variable signature.

addrKind
Type: System.Diagnostics.SymbolStore.SymAddressKind

The address types for addr1, addr2, and addr3.

addr1
Type: System.Int32

The first address for the local variable specification.

addr2
Type: System.Int32

The second address for the local variable specification.

addr3
Type: System.Int32

The third address for the local variable specification.

startOffset
Type: System.Int32

The start offset for the variable. If this parameter is zero, it is ignored and the variable is defined throughout the entire scope. If the parameter is nonzero, the variable falls within the offsets of the current scope.

endOffset
Type: System.Int32

The end offset for the variable. If this parameter is zero, it is ignored and the variable is defined throughout the entire scope. If the parameter is nonzero, the variable falls within the offsets of the current scope.

The startOffset and endOffset parameters are optional. If their value is zero, they are ignored and the variable is defined throughout the entire scope. If their value is nonzero, the variable falls within the offsets of the current scope.

You can call DefineLocalVariable multiple times for a variable of the same name that occurs multiple times in different offset ranges throughout a scope. (In this case, start and end offsets must not overlap.)

.NET Framework
Available since 1.1
Return to top
Show:
© 2017 Microsoft