GitUI.RevisionGrid.GetHotkeyCommand C# (CSharp) 메소드

GetHotkeyCommand() 개인적인 메소드

duplicated from GitExtensionsForm
private GetHotkeyCommand ( int commandCode ) : HotkeyCommand
commandCode int
리턴 HotkeyCommand
        private HotkeyCommand GetHotkeyCommand(int commandCode)
        {
            if (Hotkeys == null)
                return null;

            return Hotkeys.FirstOrDefault(h => h.CommandCode == commandCode);
        }
RevisionGrid