Ejemplo n.º 1
0
        /// <summary>
        /// Gets whether or not the objects are of the same type
        /// </summary>
        /// <param name="other">The array object definition to compare to</param>
        /// <returns>True if the objects are of the same type. False otherwise</returns>
        //  Revision History
        //  MM/DD/YY who Version Issue# Description
        //  -------- --- ------- ------ ---------------------------------------
        //  04/22/13 RCG 2.80.22 N/A    Created

        public bool Equals(ArrayObjectDefinition other)
        {
            // We already know that it's an array so we just need to make sure the element definition matches
            return(ElementDefinition.Equals(other.ElementDefinition));
        }