ISymbolWriter.DefineLocalVariable Method
Assembly: mscorlib (in mscorlib.dll)
'Declaration 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 _ ) 'Usage Dim instance As ISymbolWriter Dim name As String Dim attributes As FieldAttributes Dim signature As Byte() Dim addrKind As SymAddressKind Dim addr1 As Integer Dim addr2 As Integer Dim addr3 As Integer Dim startOffset As Integer Dim endOffset As Integer instance.DefineLocalVariable(name, attributes, signature, addrKind, addr1, addr2, addr3, startOffset, endOffset)
void DefineLocalVariable ( String name, FieldAttributes attributes, byte[] signature, SymAddressKind addrKind, int addr1, int addr2, int addr3, int startOffset, int endOffset )
function DefineLocalVariable ( name : String, attributes : FieldAttributes, signature : byte[], addrKind : SymAddressKind, addr1 : int, addr2 : int, addr3 : int, startOffset : int, endOffset : int )
Not applicable.
Parameters
- name
The local variable name.
- attributes
A bitwise combination of the local variable attributes.
- signature
The local variable signature.
- addrKind
The address types for addr1, addr2, and addr3.
- addr1
The first address for the local variable specification.
- addr2
The second address for the local variable specification.
- addr3
The third address for the local variable specification.
- startOffset
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
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.)
Windows 98, Windows Server 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 Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.