コード例 #1
0
ファイル: am02waitoneneg.cs プロジェクト: CheneyWu/coreclr
 public static int Main()
 {
     WaitOneEx wao = new WaitOneEx();
     wao.Run();
     Console.WriteLine(100 == wao.iRet ? "Test Passed" : "Test Failed");
     return wao.iRet;
 }
コード例 #2
0
    public static int Main()
    {
        WaitOneEx wao = new WaitOneEx();

        wao.Run();
        Console.WriteLine(100 == wao.iRet ? "Test Passed" : "Test Failed");
        return(wao.iRet);
    }
コード例 #3
0
ファイル: waitoneex4a.cs プロジェクト: Fredo-Q/dotnet-coreclr
    public static int Main()
    {
        WaitOneEx wao = new WaitOneEx();

        return(wao.Run());
    }
コード例 #4
0
ファイル: waitoneex3a.cs プロジェクト: CheneyWu/coreclr
 public static int Main()
 {
     WaitOneEx wao = new WaitOneEx();
     return wao.Run();
 }