コード例 #1
0
    public static int Main()
    {
        var  tests  = new JsonBenchmarks();
        bool result = tests.Deserialize();

        return(result ? 100 : -1);
    }
コード例 #2
0
ファイル: Serialize.cs プロジェクト: CheneyWu/coreclr
 public static int Main() {
     var tests = new JsonBenchmarks();
     bool result = tests.Serialize();
     return result ? 100 : -1;
 }