using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows.Forms;
using System.Threading;
6:
namespace MutexSample
8: {
class Program
10: {
/// <summary>
/// 应用程序的主入口点。
/// </summary>
14: [STAThread]
void Main()
16: {
bool createNew;
out createNew);
if (!createNew)
20: {
21: Application.Exit();
return;
23: }
24: Application.EnableVisualStyles();
false);
new Form1());
27: }
28: }
29: }