RunningObjects.Core.Mapping.TypeMapping.Equals C# (CSharp) Method

Equals() public method

public Equals ( TypeMapping other ) : bool
other TypeMapping
return bool
        public bool Equals(TypeMapping other)
        {
            if (ReferenceEquals(null, other)) return false;
            if (ReferenceEquals(this, other)) return true;
            return Equals(other.Name, Name) && other.ModelType == ModelType && Equals(other.Key, Key) && Equals(other.Text, Text);
        }

Same methods

TypeMapping::Equals ( object obj ) : bool