///<summary>
		/// Determines whether the specified <see cref="VcsMemberTypeBase"/> instances are considered equal.
		///</summary>
		///<param name="Object1">The first <see cref="VcsMemberTypeBase"/> to compare.</param>
		///<param name="Object2">The second <see cref="VcsMemberTypeBase"/> to compare. </param>
		///<returns>true if Object1 is the same instance as Object2 or if both are null references or if objA.Equals(objB) returns true; otherwise, false.</returns>
		public static bool Equals(VcsMemberTypeBase Object1, VcsMemberTypeBase Object2)
		{
			// both are null
			if (Object1 == null && Object2 == null)
				return true;

			// one or the other is null, but not both
			if (Object1 == null ^ Object2 == null)
				return false;

			bool equal = true;
			if (Object1.MemberType != Object2.MemberType)
				equal = false;
			if (Object1.Description != null && Object2.Description != null )
			{
				if (Object1.Description != Object2.Description)
					equal = false;
			}
			else if (Object1.Description == null ^ Object1.Description == null )
			{
				equal = false;
			}
			if (Object1.IsActive != Object2.IsActive)
				equal = false;
			if (Object1.Remark != null && Object2.Remark != null )
			{
				if (Object1.Remark != Object2.Remark)
					equal = false;
			}
			else if (Object1.Remark == null ^ Object1.Remark == null )
			{
				equal = false;
			}
			return equal;
		}
		///<summary>
		/// Returns a value indicating whether this instance is equal to a specified object.
		///</summary>
		///<param name="toObject">An object to compare to this instance.</param>
		///<returns>true if toObject is a <see cref="VcsMemberTypeBase"/> and has the same value as this instance; otherwise, false.</returns>
		public virtual bool Equals(VcsMemberTypeBase toObject)
		{
			if (toObject == null)
				return false;
			return Equals(this, toObject);
		}