Beispiel #1
0
 public void StopNote(SpeccyMIDINotes Note, int Volume, int Channel)
 {
     midiOut.Send(MidiMessage.StopNote((int)Note, Volume, Channel).RawData);
 }
Beispiel #2
0
 public void SetNote(SpeccyMIDINotes Note, int Volume)
 {
     this.Note = new SpeccyMIDINote {
         Note = Note, Volume = Volume
     };
 }