* Update gitignore * Move csproj * Update project references * Update solutions * Update build scripts * Tests used to share editorconfig with projects in src * Fix broken tests. * Stop copying around .editorconfig merged root one with linting * csharp_style_expression_bodied -> suggestion * Move StyleCop rulesets to matching directories and update shared build properties * Remove legacy build files, update NuGet.cofig and solution files * Restore myget source * Clean up .gitignore * Update .gitignore * Move new test classes to tests after merge * Gitignore + nuget config * Move new test Co-authored-by: Ronald Barendse <ronald@barend.se>
51 lines
1.1 KiB
C#
51 lines
1.1 KiB
C#
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using BenchmarkDotNet.Attributes;
|
|
using BenchmarkDotNet.Configs;
|
|
using BenchmarkDotNet.Diagnosers;
|
|
|
|
namespace Umbraco.Tests.Benchmarks
|
|
{
|
|
/// <summary>
|
|
/// Want to check what is faster OfType or Cast when a enurable all has the same items
|
|
/// </summary>
|
|
[MemoryDiagnoser]
|
|
public class LinqCastBenchmarks
|
|
{
|
|
public LinqCastBenchmarks()
|
|
{
|
|
_array = new List<object>();
|
|
_array.AddRange(Enumerable.Range(0, 10000).Select(x => x.ToString()));
|
|
}
|
|
|
|
private readonly List<object> _array;
|
|
|
|
[Benchmark(Baseline = true)]
|
|
public void OfType()
|
|
{
|
|
foreach (var i in _array.OfType<string>())
|
|
{
|
|
var a = i;
|
|
}
|
|
}
|
|
|
|
[Benchmark()]
|
|
public void Cast()
|
|
{
|
|
foreach (var i in _array.Cast<string>())
|
|
{
|
|
var a = i;
|
|
}
|
|
}
|
|
|
|
[Benchmark()]
|
|
public void ExplicitCast()
|
|
{
|
|
foreach (var i in _array)
|
|
{
|
|
var a = (string)i;
|
|
}
|
|
}
|
|
}
|
|
}
|