Ejemplo n.º 1
0
        public override bool Equals(object obj)
        {
            CustomFieldGrouping other = obj as CustomFieldGrouping;

            if (other == null)
            {
                return(false);
            }

            return(definition.Equals(other.definition));
        }
Ejemplo n.º 2
0
 public bool Equals(CustomFieldWrapper other)
 {
     return(customFieldDefinition.Equals(other.customFieldDefinition) && o.opaque_ref.Equals(other.o.opaque_ref));
 }