This documentation is archived and is not being maintained.
Nullable::Equals<T> Method
Visual Studio 2010
Indicates whether two specified Nullable<T> objects are equal.
Assembly: mscorlib (in mscorlib.dll)
[ComVisibleAttribute(true)] public: generic<typename T> where T : value class static bool Equals( Nullable<T> n1, Nullable<T> n2 )
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::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. |
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show: