Exemplo n.º 1
0
 public static Pitch Create(Octave octave, PitchClass pitchClass) => new Pitch(octave, pitchClass);
Exemplo n.º 2
0
 public Pitch(Octave octave, PitchClass pitchClass)
 {
     Octave     = octave;
     PitchClass = pitchClass;
 }