com.calitha.commons.IntegerList.Equals C# (CSharp) Method

Equals() public static method

Determines whether the specified Object instances are considered equal.
public static Equals ( object objA, object objB ) : bool
objA object The first Object to compare.
objB object The second Object to compare.
return bool
		public new static bool Equals(object objA, object objB)
		{
			return objA.Equals(objB);
		}

Same methods

IntegerList::Equals ( object obj ) : bool