LiveVariableValueToNullTerminatedString Method

Parses the value as a null-terminated string and converts it to a .Net string given the specified encoding.

Definition

Namespace: VisualGDBExtensibility.LiveWatch
Assembly: VisualGDBExtensibility (in VisualGDBExtensibility.dll) Version: 5.6.109.1 (5.6.109.4849)
C#
public string ToNullTerminatedString(
	int offset = 0,
	int maxSize = 2147483647,
	Encoding encoding = null
)

Parameters

offset  Int32  (Optional)
Offset, from the beginning of the actual value.
maxSize  Int32  (Optional)
Maximum size to check. Defaults to the entire buffer.
encoding  Encoding  (Optional)
Encoding to use. Defaults to UTF-8.

Return Value

String

[Missing <returns> documentation for "M:VisualGDBExtensibility.LiveWatch.LiveVariableValue.ToNullTerminatedString(System.Int32,System.Int32,System.Text.Encoding)"]

See Also