BTDB.FieldHandler.EnumFieldHandler.EnumConfiguration.Equals C# (CSharp) Method

Equals() public method

public Equals ( EnumConfiguration other ) : bool
other EnumConfiguration
return bool
            public bool Equals(EnumConfiguration other)
            {
                if (ReferenceEquals(null, other)) return false;
                if (ReferenceEquals(this, other)) return true;
                return other._flags.Equals(_flags)
                    && _names.SequenceEqual(other._names)
                    && _values.SequenceEqual(other._values);
            }

Same methods

EnumFieldHandler.EnumConfiguration::Equals ( object obj ) : bool