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

Equals() protected method

protected Equals ( MyState other ) : bool
other MyState
return bool
            protected bool Equals(MyState other)
            {
                return string.Equals(this.Name, other.Name);
            }
        }

Same methods

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