Nettiers.AdventureWorks.Entities.VVendorBase.Equals C# (CSharp) Method

Equals() public method

Returns a value indicating whether this instance is equal to a specified object.
public Equals ( VVendorBase toObject ) : bool
toObject VVendorBase An object to compare to this instance.
return bool
		public virtual bool Equals(VVendorBase toObject)
		{
			if (toObject == null)
				return false;
			return Equals(this, toObject);
		}
		

Same methods

VVendorBase::Equals ( VVendorBase Object1, VVendorBase Object2 ) : bool