NullableTypes Class Library

NullableInt64 Equality Operator 

Compares two instances of NullableInt64 for equivalence.

[Visual Basic]
returnValue = NullableInt64.op_Equality(x, y)
[C#]
public static NullableBoolean operator ==(
   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