コード例 #1
0
ファイル: DeltaBlue.cs プロジェクト: lodejard/AllNetCore
    public static int Main(String[] args)
    {
        deltablue d      = new deltablue();
        bool      result = d.inst_main(args);

        return(result ? 100 : -1);
    }
コード例 #2
0
ファイル: DeltaBlue.cs プロジェクト: rainersigwald/coreclr
    public static int Main(String[] args)
    {
        deltablue d = new deltablue();

        d.inst_main(args);
        return(100);
    }
コード例 #3
0
ファイル: DeltaBlue.cs プロジェクト: Smith-yue/coreclr
 public static int Main(String[] args)
 {
     deltablue d = new deltablue();
     bool result = d.inst_main(args);
     return (result ? 100 : -1);
 }
コード例 #4
0
ファイル: DeltaBlue.cs プロジェクト: vkargov/coreclr
 public static int Main(String[] args)
 {
     deltablue d = new deltablue();
     d.inst_main(args);
     return 100;
 }