コード例 #1
0
ファイル: IoBenchmark.cs プロジェクト: erdincay/db4o
		/// <exception cref="IOException"></exception>
		public static void Main(string[] args)
		{
			IoBenchmarkArgumentParser argumentParser = new IoBenchmarkArgumentParser(args);
			PrintBenchmarkHeader();
			IoBenchmark ioBenchmark = new IoBenchmark();
			if (argumentParser.Delayed())
			{
				ioBenchmark.ProcessResultsFiles(argumentParser.ResultsFile1(), argumentParser.ResultsFile2
					());
			}
			ioBenchmark.Run(argumentParser);
		}
コード例 #2
0
ファイル: IoBenchmark.cs プロジェクト: yuuhhe/db4o
        /// <exception cref="IOException"></exception>
        public static void Main(string[] args)
        {
            IoBenchmarkArgumentParser argumentParser = new IoBenchmarkArgumentParser(args);

            PrintBenchmarkHeader();
            IoBenchmark ioBenchmark = new IoBenchmark();

            if (argumentParser.Delayed())
            {
                ioBenchmark.ProcessResultsFiles(argumentParser.ResultsFile1(), argumentParser.ResultsFile2());
            }
            ioBenchmark.Run(argumentParser);
        }