You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

преди 6 години
1234567891011121314
  1. using System;
  2. using BenchmarkDotNet.Running;
  3. namespace MQTTnet.Benchmarks
  4. {
  5. public static class Program
  6. {
  7. public static void Main(string[] args)
  8. {
  9. var summary = BenchmarkRunner.Run<MessageProcessingBenchmark>();
  10. Console.ReadLine();
  11. }
  12. }
  13. }