Nullable.Equals<T>(Nullable<T>, Nullable<T>) Method 
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Indicates whether two specified Nullable<T> objects are equal.
public:
generic <typename T>
 where T : value class static bool Equals(Nullable<T> n1, Nullable<T> n2);public static bool Equals<T>(T? n1, T? n2) where T : struct;[System.Runtime.InteropServices.ComVisible(true)]
public static bool Equals<T>(T? n1, T? n2) where T : struct;static member Equals : Nullable<'T (requires 'T : struct)> * Nullable<'T (requires 'T : struct)> -> bool (requires 'T : struct)[<System.Runtime.InteropServices.ComVisible(true)>]
static member Equals : Nullable<'T (requires 'T : struct)> * Nullable<'T (requires 'T : struct)> -> bool (requires 'T : struct)Public Shared Function Equals(Of T As Structure) (n1 As Nullable(Of T), n2 As Nullable(Of T)) As BooleanType Parameters
- T
The underlying value type of the n1 and n2 parameters.
Parameters
- n1
- Nullable<T>
A Nullable<T> object.
- n2
- Nullable<T>
A Nullable<T> object.
Returns
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 n1andn2arefalse, or the HasValue properties forn1andn2aretrue, and the Value properties of the parameters are equal. | 
| false | The HasValue property is truefor one parameter andfalsefor the other parameter, or the HasValue properties forn1andn2aretrue, and the Value properties of the parameters are unequal. | 
- Attributes