コード例 #1
0
ファイル: WorkerRole.cs プロジェクト: laurikoobas/Azure
 static void Main(string[] args) //console entry point
 {
     WorkerRole wr = new WorkerRole();
     if (wr.OnStart())
         wr.Run();
     wr.OnStop();
 }
コード例 #2
0
ファイル: WorkerRole.cs プロジェクト: yangzilong1986/Azure
        static void Main(string[] args) //console entry point
        {
            WorkerRole wr = new WorkerRole();

            if (wr.OnStart())
            {
                wr.Run();
            }
            wr.OnStop();
        }