NullableTypes Class Library

NullableInt32 Equality Operator 

Compares two instances of NullableInt32 for equivalence.

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