Appccelerate.StateMachine.When_using_custom_classes_for_states_and_events.MyEvent.Equals C# (CSharp) Method

Equals() protected method

protected Equals ( MyEvent other ) : bool
other MyEvent
return bool
            protected bool Equals(MyEvent other)
            {
                return this.Identifier == other.Identifier;
            }
        }

Same methods

When_using_custom_classes_for_states_and_events.MyEvent::Equals ( object obj ) : bool
When_using_custom_classes_for_states_and_events.MyEvent