C# Array Equals(Object)
Description
Array Equals(Object)
determines whether the specified
object is equal to the current object.
Syntax
Array.Equals(Object)
has the following syntax.
public virtual bool Equals(
Object obj
)
Parameters
Array.Equals(Object)
has the following parameters.
obj
- The object to compare with the current object.
Returns
Array.Equals(Object)
method returns true if the specified object is equal to the current object; otherwise, false.
Example
using System;//ww w . java 2s . co m
public class MainClass{
public static void Main(String[] argv){
Array my1DArray=Array.CreateInstance( typeof(Int32), 5 );
Array my2DArray=Array.CreateInstance( typeof(Int32), 5 );
Console.WriteLine(my1DArray.Equals(my2DArray));
}
}
The code above generates the following result.