Click or drag to resize

MathRMultiply Method

Multiplies a with b

If a and b are null then null is returned. If a is null then b is returned. If b is null then a is returned.

Tries to cast primitiv Type and use the * operator. If the Type is unknown then reflection is used to determin the operator.

Namespace:  System
Assembly:  Cauldron.Activator (in Cauldron.Activator.dll) Version: 3.2.0.1 (3.2.0.1)
Syntax
C#
public static Object Multiply(
	Object a,
	Object b
)

Parameters

a
Type: SystemObject
The multiplier
b
Type: SystemObject
The multiplicand

Return Value

Type: Object
Returns the product of the multiplication
Exceptions
ExceptionCondition
ArgumentExceptionOperator cannot be applied
See Also