You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-4Lines changed: 3 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,17 +2,16 @@
2
2
3
3
A small and simple benchmark for pattern scan (findpattern) implementations written in C# inspired by [this great C++ comparison](https://github.com/learn-more/findpattern-bench). Aimed to compare real-world scanning performance without any frills.
Feel free to create a pull request with your own patter scan implementation at any time. Use [PatternScanTemplate.cs](PatternScanBench/Implementations/PatternScanTemplate.cs) as a template for your one while **following the rules**. Afterwards add a `[Benchmark]` block in [Program.cs](PatternScanBench/Program.cs) and create a pull request. Alternatively try to improve an already existing one.
10
10
11
11
## Rules
12
12
13
-
* NO `/unsafe` compiler option
14
-
* NO DLLs/libraries (must work cross-platform)
15
-
* NO assembly references outside of default .NET 5 (except Microsofts "extended dotnetframework")
13
+
* NO `-unsafe` compiler option
14
+
* NO DLLs/libraries/WinAPIs (must work cross-platform)
0 commit comments