Equals() public method

Determines whether the specified is equal to the current .
public Equals ( object obj ) : bool
obj object The to compare with the current .
return bool
Example #1
0
		private void EqualsTestAssert(VersionNumber v1, VersionNumber v2, bool expectedValue)
		{
			Assert.AreEqual(v1.Equals(v2), expectedValue,
				String.Format("VersionNumber.Equals: [{0}].Equals([{1}]) returned {2}. Expected: {3}",
				v1.ToString(), v2.ToString(), v1.Equals(v2), expectedValue));
		}