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.

Namespace:  System
Assembly:  mscorlib (in mscorlib.dll)

Syntax

Public Shared Function Equals(Of T As {Structure, New}) ( _
    n1 As Nullable(Of T), _
    n2 As Nullable(Of T) _
) As Boolean
public static bool Equals<T>(
    Nullable<T> n1,
    Nullable<T> n2
)
where T : struct, new()

Type Parameters

  • T
    The underlying value type of the n1 and n2 parameters.

Parameters

Return Value

Type: System..::.Boolean
true 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.

Version Information

Windows Phone OS

Supported in: 8.1, 8.0, 7.1, 7.0

Platforms

Windows Phone

See Also

Reference

Nullable Class

System Namespace