This documentation is archived and is not being maintained.
UInt16::Equals Method (Object)
Visual Studio 2010
Returns a value indicating whether this instance is equal to a specified object.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- obj
- Type: System::Object
An object to compare to this instance.
Return Value
Type: System::Booleantrue if obj is an instance of UInt16 and equals the value of this instance; otherwise, false.
The following example demonstrates the Equals method.
UInt16 myVariable1 = 10; UInt16 myVariable2 = 10; //Display the declaring type. Console::WriteLine( "\nType of 'myVariable1' is '{0}' and value is : {1}", myVariable1.GetType(), myVariable1 ); Console::WriteLine( "Type of 'myVariable2' is '{0}' and value is : {1}", myVariable2.GetType(), myVariable2 ); // Compare 'myVariable1' instance with 'myVariable2' Object. if ( myVariable1.Equals( myVariable2 ) ) Console::WriteLine( "\nStructures 'myVariable1' and 'myVariable2' are equal" ); else Console::WriteLine( "\nStructures 'myVariable1' and 'myVariable2' are not equal" );
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: