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

GetHashCode() public method

public GetHashCode ( ) : int
return int
            public override int GetHashCode()
            {
                return this.Name != null ? this.Name.GetHashCode() : 0;
            }
When_using_custom_classes_for_states_and_events.MyState