Program.cs 594 B

1234567891011121314151617181920212223
  1. // Licensed to the .NET Foundation under one or more agreements.
  2. // The .NET Foundation licenses this file to you under the Apache 2.0 License.
  3. // See the LICENSE file in the project root for more information.
  4. using System;
  5. using BenchmarkDotNet.Running;
  6. namespace Benchmarks.System.Reactive
  7. {
  8. class Program
  9. {
  10. static void Main()
  11. {
  12. var switcher = new BenchmarkSwitcher(new[] {
  13. typeof(ZipBenchmark),
  14. typeof(CombineLatestBenchmark)
  15. });
  16. switcher.Run();
  17. Console.ReadLine();
  18. }
  19. }
  20. }