ConversionCommonNot Method

Return the result of AND NOT Operation for values 1 and 2.

Definition

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

Parameters

value1  Object
Left Operand.
value2  Object
Right Operand.

Return Value

Object
Common typed result of value1 ! value2.

Remarks

If either of the values are null upon entry, the return value is the binary compliment of the non-null value is returned.

If the common type can not be expressed as a binary value, then null is returned.

See Also