ExpressionValueIntegral Constructor

Constructs an instance of ExpressionValue.Integral from a given integral value and various options controlling how it is shown to the user.

Definition

Namespace: VisualGDBExpressions
Assembly: VisualGDBExpressions (in VisualGDBExpressions.dll) Version: 5.6.109.1 (5.6.109.4849)
C#
public Integral(
	ulong val,
	bool isSigned,
	int sizeInBits,
	bool forceHex,
	string suffix
)

Parameters

val  UInt64
The actual integral value.
isSigned  Boolean
Specifies whether the value is signed.
sizeInBits  Int32
Specifies the size of the value in bits. This controls the output format in hexadecimal mode (e.g. 0x0001 vs 0x01).
forceHex  Boolean
If true, the value will be always shown in hexadecimal format, even if hexadecimal display is disabled. This is useful for pointers.
suffix  String
Specifies an arbitrary string that will be shown to the user after the formatted value. E.g. can be the value of the pointed string if the value represents a string pointer.

See Also