CSharpSynth.Midi.MidiFile.GetChannel C# (CSharp) Method

GetChannel() private method

private GetChannel ( byte statusbyte ) : int
statusbyte byte
return int
        private int GetChannel(byte statusbyte)
        {
            statusbyte = (byte)(statusbyte << 4);
            return statusbyte >> 4;
        }