Skip to content

Instantly share code, notes, and snippets.

@jongillies
Created September 22, 2012 22:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jongillies/3768138 to your computer and use it in GitHub Desktop.
Save jongillies/3768138 to your computer and use it in GitHub Desktop.
C# example of how to pause the process befor exist if you are in the IDE (VisualStudio)
public static void PauseIfInIDE()
{
if (System.Diagnostics.Debugger.IsAttached )
{
Console.WriteLine("Press <ENTER> to continue.");
Console.Read();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment