C# Int64 Equals(Object)
Description
Int64 Equals(Object)
returns a value indicating whether
this instance is equal to a specified object.
Syntax
Int64.Equals(Object)
has the following syntax.
public override bool Equals(
Object obj
)
Parameters
Int64.Equals(Object)
has the following parameters.
obj
- An object to compare with this instance.
Returns
Int64.Equals(Object)
method returns true if obj is an instance of an Int64 and equals the value of this instance;
otherwise, false.
Example
The following code example demonstrates the Equals method.
using System;/* www. j a v a 2 s. co m*/
class Sample
{
public static void Main()
{
Int64 e1 = 4, e2 = -4;
Console.WriteLine(e1.Equals((Object)e2));
}
}
The code above generates the following result.