Example #1
0
 /// <summary>
 /// Returns a <see cref="System.String"/> that represents this instance.
 /// </summary>
 /// <returns>
 /// The name of the base note with an 'm' appended if it's a minor key.
 /// </returns>
 public override string ToString()
 {
     return(Note.ToString(this) + (IsMinor ? "m" : String.Empty));
 }