From 9560dc68a5987999703b29b53873b5c10dcf7cc7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Holger=20B=C3=B6rchers?= Date: Sun, 14 Jun 2020 21:57:44 +0200 Subject: [PATCH] cleanup --- .idea/.idea.Benchmark/.idea/vcs.xml | 6 ++++++ IdentityParser.cs | 3 +-- Program.cs | 4 ++-- README.md | 3 ++- 4 files changed, 11 insertions(+), 5 deletions(-) create mode 100644 .idea/.idea.Benchmark/.idea/vcs.xml diff --git a/.idea/.idea.Benchmark/.idea/vcs.xml b/.idea/.idea.Benchmark/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/.idea.Benchmark/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/IdentityParser.cs b/IdentityParser.cs index e6ea687..9ae6a19 100644 --- a/IdentityParser.cs +++ b/IdentityParser.cs @@ -1,5 +1,4 @@ -using System; -using System.Text.RegularExpressions; +using System.Text.RegularExpressions; using BenchmarkDotNet.Attributes; namespace Benchmark diff --git a/Program.cs b/Program.cs index 9c7b0fe..536f2de 100644 --- a/Program.cs +++ b/Program.cs @@ -2,12 +2,12 @@ namespace Benchmark { - public class Program + public static class Program { public static void Main(string[] args) { //var summary = BenchmarkRunner.Run(); - var summary = BenchmarkRunner.Run(); + _ = BenchmarkRunner.Run(); } } } diff --git a/README.md b/README.md index 69f7755..ffb0bf3 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,3 @@ -# Benchmrk +# Benchmark +My personal template for different benchmarks