IFromConverter<T>.To Method

Definition

Namespace: Numerics.NET.Generic
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0

Overload List

To<U>(Complex<T>) Converts a complex value to a complex value of the specified type.
To<U>(T) Converts a value to the specified type.

To<U>(Complex<T>)

Converts a complex value to a complex value of the specified type.
C#
Complex<U> To<U>(
	Complex<T> value
)

Parameters

value  Complex<T>
The value to convert.

Type Parameters

U
The type to convert to.

Return Value

Complex<U>
The converted value.

To<U>(T)

Converts a value to the specified type.
C#
U To<U>(
	T value
)

Parameters

value  T
The value to convert.

Type Parameters

U
The type to convert to.

Return Value

U
The converted value.

See Also