ConversionCommonModulus Method

Return the result of modulus for values 1 and 2.

Definition

Namespace: Html
Assembly: Html (in Html.dll) Version: 25.2822.3845
C#
public static Object CommonModulus(
	Object value1,
	Object value2
)

Parameters

value1  Object
Dividend.
value2  Object
Divisor.

Return Value

Object
Common typed result of value1 % value2.

Remarks

This method requires that both values be numeric, or null will be returned.

See Also