/// <summary>
 /// Removes the pair of methods registered.
 /// </summary>
 public static void RemoveMethodsToRaiseOnKeyBoardActivity <T>(Action <char, Keys> textInputMethodToCall, Action <Keys, Keys, Keys> controlKeysMethodToCall, T t)
 {
     ActionTextInputPoolingList.UnRegister(textInputMethodToCall, t);
     ActionKeyCommandsInputPoolingList.UnRegister(controlKeysMethodToCall, t);
 }
 public static void RemoveMethodToRaiseOnCommandInput <T>(Action <Keys, Keys, Keys> method, T t)
 {
     ActionKeyCommandsInputPoolingList.UnRegister(method, t);
 }