Nullable.Equals<T> Method
Microsoft Silverlight will reach end of support after October 2021. Learn more.
Indicates whether two specified Nullable<T> objects are equal.
Namespace: System
Assembly: mscorlib (in mscorlib.dll)
Syntax
'Declaration
<ComVisibleAttribute(True)> _
Public Shared Function Equals(Of T As {Structure, New}) ( _
n1 As Nullable(Of T), _
n2 As Nullable(Of T) _
) As Boolean
[ComVisibleAttribute(true)]
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
- n1
Type: System.Nullable<T>
A Nullable<T> object.
- n2
Type: System.Nullable<T>
A Nullable<T> object.
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
Silverlight
Supported in: 5, 4, 3
Silverlight for Windows Phone
Supported in: Windows Phone OS 7.1, Windows Phone OS 7.0
XNA Framework
Supported in: Xbox 360, Windows Phone OS 7.0
Platforms
For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.