Int32.Equals Method (Object)
.NET Framework 4.5
Returns a value indicating whether this instance is equal to a specified object.
Namespace: System
Assembly: mscorlib (in mscorlib.dll)
Parameters
- obj
- Type: System.Object
An object to compare with this instance.
Return Value
Type: System.Booleantrue if obj is an instance of Int32 and equals the value of this instance; otherwise, false.
The following example illustrates the use of Equals in the context of Int32, comparing two int values and returning true if they represent the same number, or false if they do not.
Int32 myVariable1 = 60; Int32 myVariable2 = 60; // Get and 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 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.