AccidentalFish.ApplicationSupport.Core.Naming.FullyQualifiedNameBase.GetHashCode C# (CSharp) Method

GetHashCode() public method

Generate a hash code from the FullyQualifiedName string
public GetHashCode ( ) : int
return int
        public override int GetHashCode()
        {
            return (_fullyQualifiedName != null ? _fullyQualifiedName.GetHashCode() : 0);
        }
    }