public static void NoteOn(this MidiCommunicationChannel self, int channel, int key, int velocity)
 {
     self.SendMidiMessage(ChannelVoiceMessage.NoteOn(channel, key, velocity));
 }
 public static void NoteOn(this MidiCommunicationChannel self, int channel, int bend)
 {
     self.SendMidiMessage(ChannelVoiceMessage.PitchBend(channel, bend));
 }
 public static void PolyphonicPressure(this MidiCommunicationChannel self, int channel, int key, int pressure)
 {
     self.SendMidiMessage(ChannelVoiceMessage.PolyphonicKeyPressure(channel, key, pressure));
 }
 public static void ProgramChange(this MidiCommunicationChannel self, int channel, int program)
 {
     self.SendMidiMessage(ChannelVoiceMessage.ProgramChange(channel, program));
 }
 public static void ControllerChange(this MidiCommunicationChannel self, int channel, int cc, int value)
 {
     self.SendMidiMessage(ChannelVoiceMessage.ControllerChange(channel, cc, value));
 }