-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathAppendValueTypesBenchmark.cs
45 lines (37 loc) · 1.15 KB
/
AppendValueTypesBenchmark.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
using BenchmarkDotNet.Attributes;
namespace LinkDotNet.StringBuilder.Benchmarks;
[MemoryDiagnoser]
public class AppendValueTypes
{
private const int NumberOfIterations = 25;
[Benchmark]
public string DotNetStringBuilderAppendValue()
{
var builder = new System.Text.StringBuilder();
for (var i = 0; i < NumberOfIterations; i++)
{
builder.Append(true);
builder.Append(int.MaxValue);
builder.Append(decimal.MaxValue);
builder.Append(byte.MinValue);
builder.Append(float.Epsilon);
builder.Append(double.Epsilon);
}
return builder.ToString();
}
[Benchmark]
public string ValueStringBuilderAppendValue()
{
using var builder = new ValueStringBuilder();
for (var i = 0; i < NumberOfIterations; i++)
{
builder.Append(true);
builder.Append(int.MaxValue);
builder.Append(decimal.MaxValue);
builder.Append(byte.MinValue);
builder.Append(float.Epsilon);
builder.Append(double.Epsilon);
}
return builder.ToString();
}
}