Example #1
0
		/// <summary>
		/// True if the objects are considered equivalent. This base class has no properties so
		/// the objects are trivially equivalent if of the same class.
		/// </summary>
		/// <param name="other"></param>
		/// <returns></returns>
		public virtual bool IsEquivalent(IFsAbstractStructure other)
		{
			if (other == null)
				return false;
			return other.GetType() == GetType();
		}