Skip to content

JSTypedArray<T>.CastTo<TOther> method

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

C#
public TOther CastTo<TOther>()
    where TOther : struct, IJSValue<TOther>
parameterdescription
TOtherA 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