Skip to content

JSMap.CastTo<T> method

Creates a T struct from this instance. It throws InvalidCastException in case of failure.

C#
public T CastTo<T>()
    where T : struct, IJSValue<T>
parameterdescription
TA struct that implements IJSValue interface.

Return Value

T struct created based on this instance.

Exceptions

exceptioncondition
InvalidCastExceptionThrown when the T struct cannot be crated based on this instance.

See Also

Released under the MIT license