public ChannelVoiceMessage(ChannelVoiceMessageType messageType, byte channel, byte byte1, byte?byte2 = null) { MessageType = messageType; MidiChannel = channel; Byte1 = byte1; Byte2 = byte2; }
protected ChannelVoiceMessage(ChannelVoiceMessageType messageType, ushort channel) : base(MidiMessageClass.ChannelVoice) { MessageType = messageType; Channel = channel; }