Gets a collection with defined variables and their values.
Namespace: MindFusion.Scripting
Assembly: MindFusion.Scripting
SyntaxC#
Copy Code
|
|---|
public Dictionary<string, Object> LocalVars { get; } |
Visual Basic
Copy Code
|
|---|
Public ReadOnly Property LocalVars As Dictionary(Of String, Object) |
A dictionary with variables and their values.
RemarksAfter a byte code is evaluated within this context, LocalVars is updated with all variables declared in the code.
See Also