FrannHammer.Models.BaseCharacterAttributeTypeModel.GetHashCode C# (CSharp) Method

GetHashCode() public method

public GetHashCode ( ) : int
return int
        public override int GetHashCode()
        {
            unchecked
            {
                var hashCode = Id;
                hashCode = (hashCode*397) ^ (Name != null ? Name.GetHashCode() : 0);
                hashCode = (hashCode*397) ^ NotationId;
                return hashCode;
            }
        }
BaseCharacterAttributeTypeModel