MidiInput.IsNotePitchGiven C# (CSharp) Méthode

IsNotePitchGiven() public static méthode

public static IsNotePitchGiven ( MidiChannel channel ) : bool
channel MidiChannel
Résultat bool
    public static bool IsNotePitchGiven(MidiChannel channel)
    {
        var cs = instance.channelArray [(int)channel];
        return cs.lastNote >= 0.0f;
    }