Skip to content

Instantly share code, notes, and snippets.

@NicoVermeir
Created November 10, 2016 22:11
Show Gist options
  • Save NicoVermeir/00409ee73e8c96238be1618832758fb9 to your computer and use it in GitHub Desktop.
Save NicoVermeir/00409ee73e8c96238be1618832758fb9 to your computer and use it in GitHub Desktop.
private void OnButtonClicked(RadialController sender, RadialControllerButtonClickedEventArgs args)
{
if (_dte.Application.Debugger.CurrentMode == dbgDebugMode.dbgRunMode)
{
_dte.Application.Debugger.Stop();
}
else
{
_dte.Application.Debugger.Go();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment