NullableTypes Class Library

NullableDecimal Equality Operator 

Compares two instances of NullableDecimal for equivalence.

[Visual Basic]
returnValue = NullableDecimal.op_Equality(x, y)
[C#]
public static NullableBoolean operator ==(
   NullableDecimal x,
   NullableDecimal y
);

Parameters

x
A NullableDecimal structure.
y
A NullableDecimal structure.

Return Value

A NullableBoolean that is True if the two instances are equivalent or False if the two instances are not equivalent. If either instance of NullableDecimal is Null, the Value of the NullableBoolean will be Null.

See Also

NullableDecimal Class | NullableTypes Namespace