コード例 #1
0
ファイル: Serialize.cs プロジェクト: layomia/dotnet_runtime
        public static int Main()
        {
            var  tests  = new JsonBenchmarks();
            bool result = tests.Serialize();

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