Click or drag to resize

V8FastArg.TryGet<T>(Nullable<T>) Method

Gets a nullable value of the given underlying type from the argument if possible.

Namespace: Microsoft.ClearScript.V8.FastProxy
Assembly: ClearScript.V8 (in ClearScript.V8.dll) Version: 7.5.0
Syntax
public bool TryGet<T>(
	out T? value
)
where T : struct, new()

Parameters

value  Nullable<T>
On return, a nullable value of underlying type T if the operation succeeded.

Type Parameters

T
The underlying type of the nullable value to get.

Return Value

Boolean
True if the operation succeeded, false otherwise.
See Also