Nullable.Equals(Of T) Method
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Indicates whether two specified Nullable(Of T) objects are equal.
Assembly: mscorlib (in mscorlib.dll)
'Declaration Public Shared Function Equals(Of T As {Structure, New}) ( _ n1 As Nullable(Of T), _ n2 As Nullable(Of T) _ ) As Boolean
Type Parameters
- T
The underlying value type of the n1 and n2 parameters.
Parameters
- n1
- Type: System.Nullable(Of T)
A Nullable(Of T) object.
- n2
- Type: System.Nullable(Of T)
A Nullable(Of T) object.
Return Value
Type: System.Booleantrue if the n1 parameter is equal to the n2 parameter; otherwise, false.
The return value depends on the HasValue and Value properties of the two parameters that are compared.
Return Value | Description |
|---|---|
true | The HasValue properties for n1 and n2 are false. -or- The HasValue properties for n1 and n2 are true, and the Value properties of the parameters are equal. |
false | The HasValue property is true for one parameter and false for the other parameter. -or- The HasValue properties for n1 and n2 are true, and the Value properties of the parameters are unequal. |