Skip to content

Instantly share code, notes, and snippets.

@tany3
Created February 12, 2015 22:53
Show Gist options
  • Save tany3/a26011ad713e4f9c2c7d to your computer and use it in GitHub Desktop.
Save tany3/a26011ad713e4f9c2c7d to your computer and use it in GitHub Desktop.
C# デバッガを起動する
using System;
using System.Diagnostics;
namespace DebuggerTest
{
class Program
{
static void Main(string[] args)
{
#if DEBUG
//デバッガを起動
System.Diagnostics.Debugger.Launch();
#endif
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment