/// <summary>
        /// Converts a <see cref="Notoriety"/> to a string.
        /// </summary>
        /// <param name="notoriety">The notoriety to convert.</param>
        /// <returns>The string representation.</returns>
        public static string NotorietyToString(Notoriety notoriety)
        {
            switch (notoriety)
            {
            case Notoriety.ForeverAlone:
                return("Forever Alone");

            default:
                return(notoriety.ToString());
            }
        }