コード例 #1
0
        private static void Main(string[] args)
        {
            // ensure only a single instance of this app runs.
            SingleInstanceApplication app = new SingleInstanceApplication();

            app.Run(args);
        }
コード例 #2
0
ファイル: Program.cs プロジェクト: BackupTheBerlios/nantgui
 private static void Main(string[] args)
 {
     // ensure only a single instance of this app runs.
     SingleInstanceApplication app = new SingleInstanceApplication();
     app.Run(args);
 }