Exemplo n.º 1
0
        private static void Main(string[] args)
        {
            // ensure only a single instance of this app runs.
            SingleInstanceApplication app = new SingleInstanceApplication();

            app.Run(args);
        }
Exemplo n.º 2
0
 private static void Main(string[] args)
 {
     // ensure only a single instance of this app runs.
     SingleInstanceApplication app = new SingleInstanceApplication();
     app.Run(args);
 }