Exemplo n.º 1
0
        /// <summary>
        /// Returns the name of the key, such as "Ab Major", "E Minor", or "F# Major"
        /// </summary>
        public override string ToString()
        {
            // Get the name of the tonic and append the mode.
            Pitch tonic = GetScaleDegreePitch(new ScaleDegree(), 4);

            return(tonic.ToString() + " " + mode.ToString());
        }