MidiPlayer.TriggerNoteOn C# (CSharp) 메소드

TriggerNoteOn() 개인적인 메소드

private TriggerNoteOn ( int channel, int note, int velocity ) : void
channel int
note int
velocity int
리턴 void
    private void TriggerNoteOn(int channel, int note, int velocity)
    {
        if (OnNoteOn != null) OnNoteOn(channel, note, velocity);
    }