Table of Contents

Class TypelessConvert

Namespace
NumSharp.Utilities
Assembly
NumSharp.dll

Provides a way to convert boxed object from known input type to known output type. By making it receive and return object - It is suitable for a common delegate: see TypelessConvertDelegate

public static class TypelessConvert
Inheritance
TypelessConvert
Inherited Members

Methods

FromBooleanToByte(object)

Convert from Boolean to Byte when input is a boxed non-generic object.

public static object FromBooleanToByte(object input)

Parameters

input object

The object that will be casted to bool and then converted to byte

Returns

object

Byte

FromBooleanToChar(object)

Convert from Boolean to Char when input is a boxed non-generic object.

public static object FromBooleanToChar(object input)

Parameters

input object

The object that will be casted to bool and then converted to char

Returns

object

Char

FromBooleanToDecimal(object)

Convert from Boolean to Decimal when input is a boxed non-generic object.

public static object FromBooleanToDecimal(object input)

Parameters

input object

The object that will be casted to bool and then converted to decimal

Returns

object

Decimal

FromBooleanToDouble(object)

Convert from Boolean to Double when input is a boxed non-generic object.

public static object FromBooleanToDouble(object input)

Parameters

input object

The object that will be casted to bool and then converted to double

Returns

object

Double

FromBooleanToInt16(object)

Convert from Boolean to Int16 when input is a boxed non-generic object.

public static object FromBooleanToInt16(object input)

Parameters

input object

The object that will be casted to bool and then converted to short

Returns

object

Int16

FromBooleanToInt32(object)

Convert from Boolean to Int32 when input is a boxed non-generic object.

public static object FromBooleanToInt32(object input)

Parameters

input object

The object that will be casted to bool and then converted to int

Returns

object

Int32

FromBooleanToInt64(object)

Convert from Boolean to Int64 when input is a boxed non-generic object.

public static object FromBooleanToInt64(object input)

Parameters

input object

The object that will be casted to bool and then converted to long

Returns

object

Int64

FromBooleanToSingle(object)

Convert from Boolean to Single when input is a boxed non-generic object.

public static object FromBooleanToSingle(object input)

Parameters

input object

The object that will be casted to bool and then converted to float

Returns

object

Single

FromBooleanToString(object)

Convert from Boolean to String when input is a boxed non-generic object.

public static object FromBooleanToString(object input)

Parameters

input object

The object that will be casted to bool and then converted to string

Returns

object

String

FromBooleanToUInt16(object)

Convert from Boolean to UInt16 when input is a boxed non-generic object.

public static object FromBooleanToUInt16(object input)

Parameters

input object

The object that will be casted to bool and then converted to ushort

Returns

object

UInt16

FromBooleanToUInt32(object)

Convert from Boolean to UInt32 when input is a boxed non-generic object.

public static object FromBooleanToUInt32(object input)

Parameters

input object

The object that will be casted to bool and then converted to uint

Returns

object

UInt32

FromBooleanToUInt64(object)

Convert from Boolean to UInt64 when input is a boxed non-generic object.

public static object FromBooleanToUInt64(object input)

Parameters

input object

The object that will be casted to bool and then converted to ulong

Returns

object

UInt64

FromByteToBoolean(object)

Convert from Byte to Boolean when input is a boxed non-generic object.

public static object FromByteToBoolean(object input)

Parameters

input object

The object that will be casted to byte and then converted to bool

Returns

object

Boolean

FromByteToChar(object)

Convert from Byte to Char when input is a boxed non-generic object.

public static object FromByteToChar(object input)

Parameters

input object

The object that will be casted to byte and then converted to char

Returns

object

Char

FromByteToDecimal(object)

Convert from Byte to Decimal when input is a boxed non-generic object.

public static object FromByteToDecimal(object input)

Parameters

input object

The object that will be casted to byte and then converted to decimal

Returns

object

Decimal

FromByteToDouble(object)

Convert from Byte to Double when input is a boxed non-generic object.

public static object FromByteToDouble(object input)

Parameters

input object

The object that will be casted to byte and then converted to double

Returns

object

Double

FromByteToInt16(object)

Convert from Byte to Int16 when input is a boxed non-generic object.

public static object FromByteToInt16(object input)

Parameters

input object

The object that will be casted to byte and then converted to short

Returns

object

Int16

FromByteToInt32(object)

Convert from Byte to Int32 when input is a boxed non-generic object.

public static object FromByteToInt32(object input)

Parameters

input object

The object that will be casted to byte and then converted to int

Returns

object

Int32

FromByteToInt64(object)

Convert from Byte to Int64 when input is a boxed non-generic object.

public static object FromByteToInt64(object input)

Parameters

input object

The object that will be casted to byte and then converted to long

Returns

object

Int64

FromByteToSingle(object)

Convert from Byte to Single when input is a boxed non-generic object.

public static object FromByteToSingle(object input)

Parameters

input object

The object that will be casted to byte and then converted to float

Returns

object

Single

FromByteToString(object)

Convert from Byte to String when input is a boxed non-generic object.

public static object FromByteToString(object input)

Parameters

input object

The object that will be casted to byte and then converted to string

Returns

object

String

FromByteToUInt16(object)

Convert from Byte to UInt16 when input is a boxed non-generic object.

public static object FromByteToUInt16(object input)

Parameters

input object

The object that will be casted to byte and then converted to ushort

Returns

object

UInt16

FromByteToUInt32(object)

Convert from Byte to UInt32 when input is a boxed non-generic object.

public static object FromByteToUInt32(object input)

Parameters

input object

The object that will be casted to byte and then converted to uint

Returns

object

UInt32

FromByteToUInt64(object)

Convert from Byte to UInt64 when input is a boxed non-generic object.

public static object FromByteToUInt64(object input)

Parameters

input object

The object that will be casted to byte and then converted to ulong

Returns

object

UInt64

FromCharToBoolean(object)

Convert from Char to Boolean when input is a boxed non-generic object.

public static object FromCharToBoolean(object input)

Parameters

input object

The object that will be casted to char and then converted to bool

Returns

object

Boolean

FromCharToByte(object)

Convert from Char to Byte when input is a boxed non-generic object.

public static object FromCharToByte(object input)

Parameters

input object

The object that will be casted to char and then converted to byte

Returns

object

Byte

FromCharToDecimal(object)

Convert from Char to Decimal when input is a boxed non-generic object.

public static object FromCharToDecimal(object input)

Parameters

input object

The object that will be casted to char and then converted to decimal

Returns

object

Decimal

FromCharToDouble(object)

Convert from Char to Double when input is a boxed non-generic object.

public static object FromCharToDouble(object input)

Parameters

input object

The object that will be casted to char and then converted to double

Returns

object

Double

FromCharToInt16(object)

Convert from Char to Int16 when input is a boxed non-generic object.

public static object FromCharToInt16(object input)

Parameters

input object

The object that will be casted to char and then converted to short

Returns

object

Int16

FromCharToInt32(object)

Convert from Char to Int32 when input is a boxed non-generic object.

public static object FromCharToInt32(object input)

Parameters

input object

The object that will be casted to char and then converted to int

Returns

object

Int32

FromCharToInt64(object)

Convert from Char to Int64 when input is a boxed non-generic object.

public static object FromCharToInt64(object input)

Parameters

input object

The object that will be casted to char and then converted to long

Returns

object

Int64

FromCharToSingle(object)

Convert from Char to Single when input is a boxed non-generic object.

public static object FromCharToSingle(object input)

Parameters

input object

The object that will be casted to char and then converted to float

Returns

object

Single

FromCharToString(object)

Convert from Char to String when input is a boxed non-generic object.

public static object FromCharToString(object input)

Parameters

input object

The object that will be casted to char and then converted to string

Returns

object

String

FromCharToUInt16(object)

Convert from Char to UInt16 when input is a boxed non-generic object.

public static object FromCharToUInt16(object input)

Parameters

input object

The object that will be casted to char and then converted to ushort

Returns

object

UInt16

FromCharToUInt32(object)

Convert from Char to UInt32 when input is a boxed non-generic object.

public static object FromCharToUInt32(object input)

Parameters

input object

The object that will be casted to char and then converted to uint

Returns

object

UInt32

FromCharToUInt64(object)

Convert from Char to UInt64 when input is a boxed non-generic object.

public static object FromCharToUInt64(object input)

Parameters

input object

The object that will be casted to char and then converted to ulong

Returns

object

UInt64

FromDecimalToBoolean(object)

Convert from Decimal to Boolean when input is a boxed non-generic object.

public static object FromDecimalToBoolean(object input)

Parameters

input object

The object that will be casted to decimal and then converted to bool

Returns

object

Boolean

FromDecimalToByte(object)

Convert from Decimal to Byte when input is a boxed non-generic object.

public static object FromDecimalToByte(object input)

Parameters

input object

The object that will be casted to decimal and then converted to byte

Returns

object

Byte

FromDecimalToChar(object)

Convert from Decimal to Char when input is a boxed non-generic object.

public static object FromDecimalToChar(object input)

Parameters

input object

The object that will be casted to decimal and then converted to char

Returns

object

Char

FromDecimalToDouble(object)

Convert from Decimal to Double when input is a boxed non-generic object.

public static object FromDecimalToDouble(object input)

Parameters

input object

The object that will be casted to decimal and then converted to double

Returns

object

Double

FromDecimalToInt16(object)

Convert from Decimal to Int16 when input is a boxed non-generic object.

public static object FromDecimalToInt16(object input)

Parameters

input object

The object that will be casted to decimal and then converted to short

Returns

object

Int16

FromDecimalToInt32(object)

Convert from Decimal to Int32 when input is a boxed non-generic object.

public static object FromDecimalToInt32(object input)

Parameters

input object

The object that will be casted to decimal and then converted to int

Returns

object

Int32

FromDecimalToInt64(object)

Convert from Decimal to Int64 when input is a boxed non-generic object.

public static object FromDecimalToInt64(object input)

Parameters

input object

The object that will be casted to decimal and then converted to long

Returns

object

Int64

FromDecimalToSingle(object)

Convert from Decimal to Single when input is a boxed non-generic object.

public static object FromDecimalToSingle(object input)

Parameters

input object

The object that will be casted to decimal and then converted to float

Returns

object

Single

FromDecimalToString(object)

Convert from Decimal to String when input is a boxed non-generic object.

public static object FromDecimalToString(object input)

Parameters

input object

The object that will be casted to decimal and then converted to string

Returns

object

String

FromDecimalToUInt16(object)

Convert from Decimal to UInt16 when input is a boxed non-generic object.

public static object FromDecimalToUInt16(object input)

Parameters

input object

The object that will be casted to decimal and then converted to ushort

Returns

object

UInt16

FromDecimalToUInt32(object)

Convert from Decimal to UInt32 when input is a boxed non-generic object.

public static object FromDecimalToUInt32(object input)

Parameters

input object

The object that will be casted to decimal and then converted to uint

Returns

object

UInt32

FromDecimalToUInt64(object)

Convert from Decimal to UInt64 when input is a boxed non-generic object.

public static object FromDecimalToUInt64(object input)

Parameters

input object

The object that will be casted to decimal and then converted to ulong

Returns

object

UInt64

FromDoubleToBoolean(object)

Convert from Double to Boolean when input is a boxed non-generic object.

public static object FromDoubleToBoolean(object input)

Parameters

input object

The object that will be casted to double and then converted to bool

Returns

object

Boolean

FromDoubleToByte(object)

Convert from Double to Byte when input is a boxed non-generic object.

public static object FromDoubleToByte(object input)

Parameters

input object

The object that will be casted to double and then converted to byte

Returns

object

Byte

FromDoubleToChar(object)

Convert from Double to Char when input is a boxed non-generic object.

public static object FromDoubleToChar(object input)

Parameters

input object

The object that will be casted to double and then converted to char

Returns

object

Char

FromDoubleToDecimal(object)

Convert from Double to Decimal when input is a boxed non-generic object.

public static object FromDoubleToDecimal(object input)

Parameters

input object

The object that will be casted to double and then converted to decimal

Returns

object

Decimal

FromDoubleToInt16(object)

Convert from Double to Int16 when input is a boxed non-generic object.

public static object FromDoubleToInt16(object input)

Parameters

input object

The object that will be casted to double and then converted to short

Returns

object

Int16

FromDoubleToInt32(object)

Convert from Double to Int32 when input is a boxed non-generic object.

public static object FromDoubleToInt32(object input)

Parameters

input object

The object that will be casted to double and then converted to int

Returns

object

Int32

FromDoubleToInt64(object)

Convert from Double to Int64 when input is a boxed non-generic object.

public static object FromDoubleToInt64(object input)

Parameters

input object

The object that will be casted to double and then converted to long

Returns

object

Int64

FromDoubleToSingle(object)

Convert from Double to Single when input is a boxed non-generic object.

public static object FromDoubleToSingle(object input)

Parameters

input object

The object that will be casted to double and then converted to float

Returns

object

Single

FromDoubleToString(object)

Convert from Double to String when input is a boxed non-generic object.

public static object FromDoubleToString(object input)

Parameters

input object

The object that will be casted to double and then converted to string

Returns

object

String

FromDoubleToUInt16(object)

Convert from Double to UInt16 when input is a boxed non-generic object.

public static object FromDoubleToUInt16(object input)

Parameters

input object

The object that will be casted to double and then converted to ushort

Returns

object

UInt16

FromDoubleToUInt32(object)

Convert from Double to UInt32 when input is a boxed non-generic object.

public static object FromDoubleToUInt32(object input)

Parameters

input object

The object that will be casted to double and then converted to uint

Returns

object

UInt32

FromDoubleToUInt64(object)

Convert from Double to UInt64 when input is a boxed non-generic object.

public static object FromDoubleToUInt64(object input)

Parameters

input object

The object that will be casted to double and then converted to ulong

Returns

object

UInt64

FromInt16ToBoolean(object)

Convert from Int16 to Boolean when input is a boxed non-generic object.

public static object FromInt16ToBoolean(object input)

Parameters

input object

The object that will be casted to short and then converted to bool

Returns

object

Boolean

FromInt16ToByte(object)

Convert from Int16 to Byte when input is a boxed non-generic object.

public static object FromInt16ToByte(object input)

Parameters

input object

The object that will be casted to short and then converted to byte

Returns

object

Byte

FromInt16ToChar(object)

Convert from Int16 to Char when input is a boxed non-generic object.

public static object FromInt16ToChar(object input)

Parameters

input object

The object that will be casted to short and then converted to char

Returns

object

Char

FromInt16ToDecimal(object)

Convert from Int16 to Decimal when input is a boxed non-generic object.

public static object FromInt16ToDecimal(object input)

Parameters

input object

The object that will be casted to short and then converted to decimal

Returns

object

Decimal

FromInt16ToDouble(object)

Convert from Int16 to Double when input is a boxed non-generic object.

public static object FromInt16ToDouble(object input)

Parameters

input object

The object that will be casted to short and then converted to double

Returns

object

Double

FromInt16ToInt32(object)

Convert from Int16 to Int32 when input is a boxed non-generic object.

public static object FromInt16ToInt32(object input)

Parameters

input object

The object that will be casted to short and then converted to int

Returns

object

Int32

FromInt16ToInt64(object)

Convert from Int16 to Int64 when input is a boxed non-generic object.

public static object FromInt16ToInt64(object input)

Parameters

input object

The object that will be casted to short and then converted to long

Returns

object

Int64

FromInt16ToSingle(object)

Convert from Int16 to Single when input is a boxed non-generic object.

public static object FromInt16ToSingle(object input)

Parameters

input object

The object that will be casted to short and then converted to float

Returns

object

Single

FromInt16ToString(object)

Convert from Int16 to String when input is a boxed non-generic object.

public static object FromInt16ToString(object input)

Parameters

input object

The object that will be casted to short and then converted to string

Returns

object

String

FromInt16ToUInt16(object)

Convert from Int16 to UInt16 when input is a boxed non-generic object.

public static object FromInt16ToUInt16(object input)

Parameters

input object

The object that will be casted to short and then converted to ushort

Returns

object

UInt16

FromInt16ToUInt32(object)

Convert from Int16 to UInt32 when input is a boxed non-generic object.

public static object FromInt16ToUInt32(object input)

Parameters

input object

The object that will be casted to short and then converted to uint

Returns

object

UInt32

FromInt16ToUInt64(object)

Convert from Int16 to UInt64 when input is a boxed non-generic object.

public static object FromInt16ToUInt64(object input)

Parameters

input object

The object that will be casted to short and then converted to ulong

Returns

object

UInt64

FromInt32ToBoolean(object)

Convert from Int32 to Boolean when input is a boxed non-generic object.

public static object FromInt32ToBoolean(object input)

Parameters

input object

The object that will be casted to int and then converted to bool

Returns

object

Boolean

FromInt32ToByte(object)

Convert from Int32 to Byte when input is a boxed non-generic object.

public static object FromInt32ToByte(object input)

Parameters

input object

The object that will be casted to int and then converted to byte

Returns

object

Byte

FromInt32ToChar(object)

Convert from Int32 to Char when input is a boxed non-generic object.

public static object FromInt32ToChar(object input)

Parameters

input object

The object that will be casted to int and then converted to char

Returns

object

Char

FromInt32ToDecimal(object)

Convert from Int32 to Decimal when input is a boxed non-generic object.

public static object FromInt32ToDecimal(object input)

Parameters

input object

The object that will be casted to int and then converted to decimal

Returns

object

Decimal

FromInt32ToDouble(object)

Convert from Int32 to Double when input is a boxed non-generic object.

public static object FromInt32ToDouble(object input)

Parameters

input object

The object that will be casted to int and then converted to double

Returns

object

Double

FromInt32ToInt16(object)

Convert from Int32 to Int16 when input is a boxed non-generic object.

public static object FromInt32ToInt16(object input)

Parameters

input object

The object that will be casted to int and then converted to short

Returns

object

Int16

FromInt32ToInt64(object)

Convert from Int32 to Int64 when input is a boxed non-generic object.

public static object FromInt32ToInt64(object input)

Parameters

input object

The object that will be casted to int and then converted to long

Returns

object

Int64

FromInt32ToSingle(object)

Convert from Int32 to Single when input is a boxed non-generic object.

public static object FromInt32ToSingle(object input)

Parameters

input object

The object that will be casted to int and then converted to float

Returns

object

Single

FromInt32ToString(object)

Convert from Int32 to String when input is a boxed non-generic object.

public static object FromInt32ToString(object input)

Parameters

input object

The object that will be casted to int and then converted to string

Returns

object

String

FromInt32ToUInt16(object)

Convert from Int32 to UInt16 when input is a boxed non-generic object.

public static object FromInt32ToUInt16(object input)

Parameters

input object

The object that will be casted to int and then converted to ushort

Returns

object

UInt16

FromInt32ToUInt32(object)

Convert from Int32 to UInt32 when input is a boxed non-generic object.

public static object FromInt32ToUInt32(object input)

Parameters

input object

The object that will be casted to int and then converted to uint

Returns

object

UInt32

FromInt32ToUInt64(object)

Convert from Int32 to UInt64 when input is a boxed non-generic object.

public static object FromInt32ToUInt64(object input)

Parameters

input object

The object that will be casted to int and then converted to ulong

Returns

object

UInt64

FromInt64ToBoolean(object)

Convert from Int64 to Boolean when input is a boxed non-generic object.

public static object FromInt64ToBoolean(object input)

Parameters

input object

The object that will be casted to long and then converted to bool

Returns

object

Boolean

FromInt64ToByte(object)

Convert from Int64 to Byte when input is a boxed non-generic object.

public static object FromInt64ToByte(object input)

Parameters

input object

The object that will be casted to long and then converted to byte

Returns

object

Byte

FromInt64ToChar(object)

Convert from Int64 to Char when input is a boxed non-generic object.

public static object FromInt64ToChar(object input)

Parameters

input object

The object that will be casted to long and then converted to char

Returns

object

Char

FromInt64ToDecimal(object)

Convert from Int64 to Decimal when input is a boxed non-generic object.

public static object FromInt64ToDecimal(object input)

Parameters

input object

The object that will be casted to long and then converted to decimal

Returns

object

Decimal

FromInt64ToDouble(object)

Convert from Int64 to Double when input is a boxed non-generic object.

public static object FromInt64ToDouble(object input)

Parameters

input object

The object that will be casted to long and then converted to double

Returns

object

Double

FromInt64ToInt16(object)

Convert from Int64 to Int16 when input is a boxed non-generic object.

public static object FromInt64ToInt16(object input)

Parameters

input object

The object that will be casted to long and then converted to short

Returns

object

Int16

FromInt64ToInt32(object)

Convert from Int64 to Int32 when input is a boxed non-generic object.

public static object FromInt64ToInt32(object input)

Parameters

input object

The object that will be casted to long and then converted to int

Returns

object

Int32

FromInt64ToSingle(object)

Convert from Int64 to Single when input is a boxed non-generic object.

public static object FromInt64ToSingle(object input)

Parameters

input object

The object that will be casted to long and then converted to float

Returns

object

Single

FromInt64ToString(object)

Convert from Int64 to String when input is a boxed non-generic object.

public static object FromInt64ToString(object input)

Parameters

input object

The object that will be casted to long and then converted to string

Returns

object

String

FromInt64ToUInt16(object)

Convert from Int64 to UInt16 when input is a boxed non-generic object.

public static object FromInt64ToUInt16(object input)

Parameters

input object

The object that will be casted to long and then converted to ushort

Returns

object

UInt16

FromInt64ToUInt32(object)

Convert from Int64 to UInt32 when input is a boxed non-generic object.

public static object FromInt64ToUInt32(object input)

Parameters

input object

The object that will be casted to long and then converted to uint

Returns

object

UInt32

FromInt64ToUInt64(object)

Convert from Int64 to UInt64 when input is a boxed non-generic object.

public static object FromInt64ToUInt64(object input)

Parameters

input object

The object that will be casted to long and then converted to ulong

Returns

object

UInt64

FromSingleToBoolean(object)

Convert from Single to Boolean when input is a boxed non-generic object.

public static object FromSingleToBoolean(object input)

Parameters

input object

The object that will be casted to float and then converted to bool

Returns

object

Boolean

FromSingleToByte(object)

Convert from Single to Byte when input is a boxed non-generic object.

public static object FromSingleToByte(object input)

Parameters

input object

The object that will be casted to float and then converted to byte

Returns

object

Byte

FromSingleToChar(object)

Convert from Single to Char when input is a boxed non-generic object.

public static object FromSingleToChar(object input)

Parameters

input object

The object that will be casted to float and then converted to char

Returns

object

Char

FromSingleToDecimal(object)

Convert from Single to Decimal when input is a boxed non-generic object.

public static object FromSingleToDecimal(object input)

Parameters

input object

The object that will be casted to float and then converted to decimal

Returns

object

Decimal

FromSingleToDouble(object)

Convert from Single to Double when input is a boxed non-generic object.

public static object FromSingleToDouble(object input)

Parameters

input object

The object that will be casted to float and then converted to double

Returns

object

Double

FromSingleToInt16(object)

Convert from Single to Int16 when input is a boxed non-generic object.

public static object FromSingleToInt16(object input)

Parameters

input object

The object that will be casted to float and then converted to short

Returns

object

Int16

FromSingleToInt32(object)

Convert from Single to Int32 when input is a boxed non-generic object.

public static object FromSingleToInt32(object input)

Parameters

input object

The object that will be casted to float and then converted to int

Returns

object

Int32

FromSingleToInt64(object)

Convert from Single to Int64 when input is a boxed non-generic object.

public static object FromSingleToInt64(object input)

Parameters

input object

The object that will be casted to float and then converted to long

Returns

object

Int64

FromSingleToString(object)

Convert from Single to String when input is a boxed non-generic object.

public static object FromSingleToString(object input)

Parameters

input object

The object that will be casted to float and then converted to string

Returns

object

String

FromSingleToUInt16(object)

Convert from Single to UInt16 when input is a boxed non-generic object.

public static object FromSingleToUInt16(object input)

Parameters

input object

The object that will be casted to float and then converted to ushort

Returns

object

UInt16

FromSingleToUInt32(object)

Convert from Single to UInt32 when input is a boxed non-generic object.

public static object FromSingleToUInt32(object input)

Parameters

input object

The object that will be casted to float and then converted to uint

Returns

object

UInt32

FromSingleToUInt64(object)

Convert from Single to UInt64 when input is a boxed non-generic object.

public static object FromSingleToUInt64(object input)

Parameters

input object

The object that will be casted to float and then converted to ulong

Returns

object

UInt64

FromStringToBoolean(object)

Convert from String to Boolean when input is a boxed non-generic object.

public static object FromStringToBoolean(object input)

Parameters

input object

The object that will be casted to string and then converted to bool

Returns

object

Boolean

FromStringToByte(object)

Convert from String to Byte when input is a boxed non-generic object.

public static object FromStringToByte(object input)

Parameters

input object

The object that will be casted to string and then converted to byte

Returns

object

Byte

FromStringToChar(object)

Convert from String to Char when input is a boxed non-generic object.

public static object FromStringToChar(object input)

Parameters

input object

The object that will be casted to string and then converted to char

Returns

object

Char

FromStringToDecimal(object)

Convert from String to Decimal when input is a boxed non-generic object.

public static object FromStringToDecimal(object input)

Parameters

input object

The object that will be casted to string and then converted to decimal

Returns

object

Decimal

FromStringToDouble(object)

Convert from String to Double when input is a boxed non-generic object.

public static object FromStringToDouble(object input)

Parameters

input object

The object that will be casted to string and then converted to double

Returns

object

Double

FromStringToInt16(object)

Convert from String to Int16 when input is a boxed non-generic object.

public static object FromStringToInt16(object input)

Parameters

input object

The object that will be casted to string and then converted to short

Returns

object

Int16

FromStringToInt32(object)

Convert from String to Int32 when input is a boxed non-generic object.

public static object FromStringToInt32(object input)

Parameters

input object

The object that will be casted to string and then converted to int

Returns

object

Int32

FromStringToInt64(object)

Convert from String to Int64 when input is a boxed non-generic object.

public static object FromStringToInt64(object input)

Parameters

input object

The object that will be casted to string and then converted to long

Returns

object

Int64

FromStringToSingle(object)

Convert from String to Single when input is a boxed non-generic object.

public static object FromStringToSingle(object input)

Parameters

input object

The object that will be casted to string and then converted to float

Returns

object

Single

FromStringToUInt16(object)

Convert from String to UInt16 when input is a boxed non-generic object.

public static object FromStringToUInt16(object input)

Parameters

input object

The object that will be casted to string and then converted to ushort

Returns

object

UInt16

FromStringToUInt32(object)

Convert from String to UInt32 when input is a boxed non-generic object.

public static object FromStringToUInt32(object input)

Parameters

input object

The object that will be casted to string and then converted to uint

Returns

object

UInt32

FromStringToUInt64(object)

Convert from String to UInt64 when input is a boxed non-generic object.

public static object FromStringToUInt64(object input)

Parameters

input object

The object that will be casted to string and then converted to ulong

Returns

object

UInt64

FromUInt16ToBoolean(object)

Convert from UInt16 to Boolean when input is a boxed non-generic object.

public static object FromUInt16ToBoolean(object input)

Parameters

input object

The object that will be casted to ushort and then converted to bool

Returns

object

Boolean

FromUInt16ToByte(object)

Convert from UInt16 to Byte when input is a boxed non-generic object.

public static object FromUInt16ToByte(object input)

Parameters

input object

The object that will be casted to ushort and then converted to byte

Returns

object

Byte

FromUInt16ToChar(object)

Convert from UInt16 to Char when input is a boxed non-generic object.

public static object FromUInt16ToChar(object input)

Parameters

input object

The object that will be casted to ushort and then converted to char

Returns

object

Char

FromUInt16ToDecimal(object)

Convert from UInt16 to Decimal when input is a boxed non-generic object.

public static object FromUInt16ToDecimal(object input)

Parameters

input object

The object that will be casted to ushort and then converted to decimal

Returns

object

Decimal

FromUInt16ToDouble(object)

Convert from UInt16 to Double when input is a boxed non-generic object.

public static object FromUInt16ToDouble(object input)

Parameters

input object

The object that will be casted to ushort and then converted to double

Returns

object

Double

FromUInt16ToInt16(object)

Convert from UInt16 to Int16 when input is a boxed non-generic object.

public static object FromUInt16ToInt16(object input)

Parameters

input object

The object that will be casted to ushort and then converted to short

Returns

object

Int16

FromUInt16ToInt32(object)

Convert from UInt16 to Int32 when input is a boxed non-generic object.

public static object FromUInt16ToInt32(object input)

Parameters

input object

The object that will be casted to ushort and then converted to int

Returns

object

Int32

FromUInt16ToInt64(object)

Convert from UInt16 to Int64 when input is a boxed non-generic object.

public static object FromUInt16ToInt64(object input)

Parameters

input object

The object that will be casted to ushort and then converted to long

Returns

object

Int64

FromUInt16ToSingle(object)

Convert from UInt16 to Single when input is a boxed non-generic object.

public static object FromUInt16ToSingle(object input)

Parameters

input object

The object that will be casted to ushort and then converted to float

Returns

object

Single

FromUInt16ToString(object)

Convert from UInt16 to String when input is a boxed non-generic object.

public static object FromUInt16ToString(object input)

Parameters

input object

The object that will be casted to ushort and then converted to string

Returns

object

String

FromUInt16ToUInt32(object)

Convert from UInt16 to UInt32 when input is a boxed non-generic object.

public static object FromUInt16ToUInt32(object input)

Parameters

input object

The object that will be casted to ushort and then converted to uint

Returns

object

UInt32

FromUInt16ToUInt64(object)

Convert from UInt16 to UInt64 when input is a boxed non-generic object.

public static object FromUInt16ToUInt64(object input)

Parameters

input object

The object that will be casted to ushort and then converted to ulong

Returns

object

UInt64

FromUInt32ToBoolean(object)

Convert from UInt32 to Boolean when input is a boxed non-generic object.

public static object FromUInt32ToBoolean(object input)

Parameters

input object

The object that will be casted to uint and then converted to bool

Returns

object

Boolean

FromUInt32ToByte(object)

Convert from UInt32 to Byte when input is a boxed non-generic object.

public static object FromUInt32ToByte(object input)

Parameters

input object

The object that will be casted to uint and then converted to byte

Returns

object

Byte

FromUInt32ToChar(object)

Convert from UInt32 to Char when input is a boxed non-generic object.

public static object FromUInt32ToChar(object input)

Parameters

input object

The object that will be casted to uint and then converted to char

Returns

object

Char

FromUInt32ToDecimal(object)

Convert from UInt32 to Decimal when input is a boxed non-generic object.

public static object FromUInt32ToDecimal(object input)

Parameters

input object

The object that will be casted to uint and then converted to decimal

Returns

object

Decimal

FromUInt32ToDouble(object)

Convert from UInt32 to Double when input is a boxed non-generic object.

public static object FromUInt32ToDouble(object input)

Parameters

input object

The object that will be casted to uint and then converted to double

Returns

object

Double

FromUInt32ToInt16(object)

Convert from UInt32 to Int16 when input is a boxed non-generic object.

public static object FromUInt32ToInt16(object input)

Parameters

input object

The object that will be casted to uint and then converted to short

Returns

object

Int16

FromUInt32ToInt32(object)

Convert from UInt32 to Int32 when input is a boxed non-generic object.

public static object FromUInt32ToInt32(object input)

Parameters

input object

The object that will be casted to uint and then converted to int

Returns

object

Int32

FromUInt32ToInt64(object)

Convert from UInt32 to Int64 when input is a boxed non-generic object.

public static object FromUInt32ToInt64(object input)

Parameters

input object

The object that will be casted to uint and then converted to long

Returns

object

Int64

FromUInt32ToSingle(object)

Convert from UInt32 to Single when input is a boxed non-generic object.

public static object FromUInt32ToSingle(object input)

Parameters

input object

The object that will be casted to uint and then converted to float

Returns

object

Single

FromUInt32ToString(object)

Convert from UInt32 to String when input is a boxed non-generic object.

public static object FromUInt32ToString(object input)

Parameters

input object

The object that will be casted to uint and then converted to string

Returns

object

String

FromUInt32ToUInt16(object)

Convert from UInt32 to UInt16 when input is a boxed non-generic object.

public static object FromUInt32ToUInt16(object input)

Parameters

input object

The object that will be casted to uint and then converted to ushort

Returns

object

UInt16

FromUInt32ToUInt64(object)

Convert from UInt32 to UInt64 when input is a boxed non-generic object.

public static object FromUInt32ToUInt64(object input)

Parameters

input object

The object that will be casted to uint and then converted to ulong

Returns

object

UInt64

FromUInt64ToBoolean(object)

Convert from UInt64 to Boolean when input is a boxed non-generic object.

public static object FromUInt64ToBoolean(object input)

Parameters

input object

The object that will be casted to ulong and then converted to bool

Returns

object

Boolean

FromUInt64ToByte(object)

Convert from UInt64 to Byte when input is a boxed non-generic object.

public static object FromUInt64ToByte(object input)

Parameters

input object

The object that will be casted to ulong and then converted to byte

Returns

object

Byte

FromUInt64ToChar(object)

Convert from UInt64 to Char when input is a boxed non-generic object.

public static object FromUInt64ToChar(object input)

Parameters

input object

The object that will be casted to ulong and then converted to char

Returns

object

Char

FromUInt64ToDecimal(object)

Convert from UInt64 to Decimal when input is a boxed non-generic object.

public static object FromUInt64ToDecimal(object input)

Parameters

input object

The object that will be casted to ulong and then converted to decimal

Returns

object

Decimal

FromUInt64ToDouble(object)

Convert from UInt64 to Double when input is a boxed non-generic object.

public static object FromUInt64ToDouble(object input)

Parameters

input object

The object that will be casted to ulong and then converted to double

Returns

object

Double

FromUInt64ToInt16(object)

Convert from UInt64 to Int16 when input is a boxed non-generic object.

public static object FromUInt64ToInt16(object input)

Parameters

input object

The object that will be casted to ulong and then converted to short

Returns

object

Int16

FromUInt64ToInt32(object)

Convert from UInt64 to Int32 when input is a boxed non-generic object.

public static object FromUInt64ToInt32(object input)

Parameters

input object

The object that will be casted to ulong and then converted to int

Returns

object

Int32

FromUInt64ToInt64(object)

Convert from UInt64 to Int64 when input is a boxed non-generic object.

public static object FromUInt64ToInt64(object input)

Parameters

input object

The object that will be casted to ulong and then converted to long

Returns

object

Int64

FromUInt64ToSingle(object)

Convert from UInt64 to Single when input is a boxed non-generic object.

public static object FromUInt64ToSingle(object input)

Parameters

input object

The object that will be casted to ulong and then converted to float

Returns

object

Single

FromUInt64ToString(object)

Convert from UInt64 to String when input is a boxed non-generic object.

public static object FromUInt64ToString(object input)

Parameters

input object

The object that will be casted to ulong and then converted to string

Returns

object

String

FromUInt64ToUInt16(object)

Convert from UInt64 to UInt16 when input is a boxed non-generic object.

public static object FromUInt64ToUInt16(object input)

Parameters

input object

The object that will be casted to ulong and then converted to ushort

Returns

object

UInt16

FromUInt64ToUInt32(object)

Convert from UInt64 to UInt32 when input is a boxed non-generic object.

public static object FromUInt64ToUInt32(object input)

Parameters

input object

The object that will be casted to ulong and then converted to uint

Returns

object

UInt32

GetConverter(Type, Type)

public static TypelessConvertDelegate GetConverter(Type input, Type output)

Parameters

input Type
output Type

Returns

TypelessConvertDelegate