ILiveMemoryManagerCreateLiveVariable Method

Creates a live variable given the address and type.

Definition

Namespace: VisualGDBExtensibility.LiveWatch
Assembly: VisualGDBExtensibility (in VisualGDBExtensibility.dll) Version: 5.6.109.1 (5.6.109.4849)
C#
ILiveVariable CreateLiveVariable(
	ulong address,
	int size,
	string label = null,
	LiveVariableFlags flags = LiveVariableFlags.None
)

Parameters

address  UInt64
The target address of the live variable.
size  Int32
The target size of the live variable.
label  String  (Optional)
The user-friendly name of the live variable used for debugging.
flags  LiveVariableFlags  (Optional)
Flags specifying how to create the variable

Return Value

ILiveVariable
The created live variable object.

Remarks

Once the live variable has been created, VisualGDB will keep automatically updating its value along with the other variables, unless it is disposed, or the SuspendUpdating property is set to true. VisualGDB automatically reorders and groups multiple live variable reads, resulting in a great performance improvement.

See Also