Automatonymous.Events.TriggerEvent.Equals C# (CSharp) Method

Equals() public method

public Equals ( TriggerEvent other ) : bool
other TriggerEvent
return bool
        public bool Equals(TriggerEvent other)
        {
            if (ReferenceEquals(null, other))
                return false;
            if (ReferenceEquals(this, other))
                return true;
            return Equals(other._name, _name);
        }

Same methods

TriggerEvent::Equals ( object obj ) : bool