AccidentalFish.ApplicationSupport.Core.Naming.FullyQualifiedNameBase.GetHashCode C# (CSharp) Méthode

GetHashCode() public méthode

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