NullableTypes Class Library

NullableInt64.Equals Method (NullableInt64, NullableInt64)

Compares two NullableInt64 structures to determine if they are equivalent.

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

Parameters

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

See Also

NullableInt64 Class | NullableTypes Namespace | NullableInt64.Equals Overload List