This commit is contained in:
Holger Börchers 2020-06-14 21:57:44 +02:00
parent 3c3b9dd7ed
commit 9560dc68a5
4 changed files with 11 additions and 5 deletions

6
.idea/.idea.Benchmark/.idea/vcs.xml generated Normal file
View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="$PROJECT_DIR$" vcs="Git" />
</component>
</project>

View File

@ -1,5 +1,4 @@
using System;
using System.Text.RegularExpressions;
using System.Text.RegularExpressions;
using BenchmarkDotNet.Attributes;
namespace Benchmark

View File

@ -2,12 +2,12 @@
namespace Benchmark
{
public class Program
public static class Program
{
public static void Main(string[] args)
{
//var summary = BenchmarkRunner.Run<TrailingNumberFromString>();
var summary = BenchmarkRunner.Run<IdentityParser>();
_ = BenchmarkRunner.Run<IdentityParser>();
}
}
}

View File

@ -1,2 +1,3 @@
# Benchmrk
# Benchmark
My personal template for different benchmarks