NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

ISymbolScope.GetLocals

Gets the local variables within the current lexical scope.

[Visual Basic]
Function GetLocals() As ISymbolVariable ()
[C#]
ISymbolVariable[] GetLocals();
[C++]
ISymbolVariable* GetLocals() [] = 0;
[JScript]
function GetLocals() : ISymbolVariable[];

Return Value

The local variables within the current lexical scope.

Remarks

The local variables are returned in no particular order. If a local variable changes its address within the current scope that that variable will be returned multiple times, each with a different offset range.

See Also

ISymbolScope Interface | ISymbolScope Members | System.Diagnostics.SymbolStore Namespace