FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
RecursiveExtractor/RecursiveExtractor.Benchmarks/Program.cs at main · microsoft/RecursiveExtractor · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
microsoft
/
RecursiveExtractor
Public
Notifications
You must be signed in to change notification settings
Fork
35
Star
220
Code
Issues
19
Pull requests
2
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
RecursiveExtractor
/
RecursiveExtractor.Benchmarks
/
Program.cs
Copy path
More file actions
More file actions
Latest commit
History
History
History
21 lines (19 loc) · 757 Bytes
Breadcrumbs
RecursiveExtractor
/
RecursiveExtractor.Benchmarks
/
Program.cs
Copy path
File metadata and controls
21 lines (19 loc) · 757 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Copyright (c) Microsoft Corporation. Licensed under the MIT License.
using
BenchmarkDotNet
.
Running
;
using
System
.
Reflection
;
namespace
Microsoft
.
CST
.
RecursiveExtractor
.
Benchmarks
{
/// <summary>
/// Entry point for the benchmark runner.
/// </summary>
public
static
class
Program
{
/// <summary>
/// Runs the requested benchmarks. Pass <c>--filter *</c> to run everything, or
/// <c>--list flat</c> to see the available benchmarks.
/// </summary>
/// <param name="args">BenchmarkDotNet command line arguments.</param>
public
static
void
Main
(
string
[
]
args
)
=>
BenchmarkSwitcher
.
FromAssembly
(
Assembly
.
GetExecutingAssembly
(
)
)
.
Run
(
args
,
BenchmarkConfig
.
Create
(
)
)
;
}
}
Back
|
FazBrowse Home
|
New Git URL