PassFruit.Field.Equals C# (CSharp) Method

Equals() public method

public Equals ( Field other ) : bool
other Field
return bool
        public bool Equals(Field other)
        {
            if (ReferenceEquals(null, other)) return false;
            if (ReferenceEquals(this, other)) return true;
            return Equals(other.FieldType, FieldType)
                && other.Id.Equals(Id)
                && Equals(other.Value, Value)
                && Equals(other.Name, Name);
        }

Same methods

Field::Equals ( object obj ) : bool