Appccelerate.StateMachine.When_using_custom_classes_for_states_and_events.MyState.Equals C# (CSharp) 메소드

Equals() 보호된 메소드

protected Equals ( MyState other ) : bool
other MyState
리턴 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