V8FastResult.Set<T>(Nullable<T>) Method |
Sets the result to a nullable value of the given underlying type.
Namespace: Microsoft.ClearScript.V8.FastProxyAssembly: ClearScript.V8 (in ClearScript.V8.dll) Version: 7.5.0
Syntaxpublic void Set<T>(
T? value
)
where T : struct, new()
Public Sub Set(Of T As {Structure, New}) (
value As T?
)
public:
generic<typename T>
where T : value class, gcnew()
void Set(
Nullable<T> value
)
member Set :
value : Nullable<'T> -> unit when 'T : struct, new()
Parameters
- value Nullable<T>
- A nullable value of underlying type T to assign to the result.
Type Parameters
- T
- The underlying type of the nullable value to assign.
See Also