PianoKeyEmulator.Note.ToString C# (CSharp) Method

ToString() public method

public ToString ( ) : string
return string
        public override string ToString()
        {
            return Tone.ToString().Replace('d', '#') + Octave;
        }

Usage Example

Ejemplo n.º 1
0
 private string GenerateKeyName(Note note)
 {
     return note.ToString().Replace('#', 'd');
 }
All Usage Examples Of PianoKeyEmulator.Note::ToString