NullableTypes Class Library

NullableInt32.Equals Method (NullableInt32, NullableInt32)

Compares two NullableInt32 structures to determine if they are equivalent.

[Visual Basic]
Overloads Public Shared Function Equals( _
   ByVal x As NullableInt32, _
   ByVal y As NullableInt32 _
) As NullableBoolean
[C#]
public static NullableBoolean Equals(
   NullableInt32 x,
   NullableInt32 y
);

Parameters

x
A NullableInt32 structure.
y
A NullableInt32 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 NullableInt32 is Null, the Value of the NullableBoolean will be Null.

See Also

NullableInt32 Class | NullableTypes Namespace | NullableInt32.Equals Overload List