IFrom Converter<T>.To Method
Definition
Namespace: Numerics.NET.Generic
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
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.
Complex<U> To<U>(
Complex<T> value
)
Parameters
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.
U To<U>(
T value
)
Parameters
- value T
- The value to convert.
Type Parameters
- U
- The type to convert to.
Return Value
UThe converted value.