Program.cs 290 B

1234567891011121314
  1. using System.Reflection;
  2. using BenchmarkDotNet.Running;
  3. namespace Jint.Benchmark;
  4. public static class Program
  5. {
  6. public static void Main(string[] args)
  7. {
  8. BenchmarkSwitcher
  9. .FromAssembly(typeof(Program).GetTypeInfo().Assembly)
  10. .Run(args);
  11. }
  12. }