NullableTypes Class Library

NullableDecimal.Equals Method (NullableDecimal, NullableDecimal)

Compares two NullableDecimal structures to determine if they are equivalent.

[Visual Basic]
Overloads Public Shared Function Equals( _
   ByVal x As NullableDecimal, _
   ByVal y As NullableDecimal _
) As NullableBoolean
[C#]
public static NullableBoolean Equals(
   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 | NullableDecimal.Equals Overload List