using System.Security.Cryptography;
using System.Collections;
using System.Collections.Generic;
using BenchmarkDotNet.Running;
using BenchmarkDotNet.Helpers;
using BenchmarkDotNet.Configs;
using BenchmarkDotNet.Attributes;
using BenchmarkDotNet.Jobs;
using BenchmarkDotNet.Toolchains;
using BenchmarkDotNet.Toolchains.InProcess;
using BenchmarkDotNet.Toolchains.InProcess.Emit;
using BenchmarkDotNet.Toolchains.Parameters;
using BenchmarkDotNet.Toolchains.Results;
using BenchmarkDotNet.Loggers;
using BenchmarkDotNet.Reports;
using Perfolizer.Horology;
using TimeInterval_t = Perfolizer.Horology.TimeInterval;
[assembly: SecurityTransparent()]
[assembly: AllowPartiallyTrustedCallers]
[assembly: System.Diagnostics.Debuggable(isJITTrackingEnabled: false, isJITOptimizerDisabled: false)]
public static void Main()
Console.WriteLine("Entry");
private readonly Shape[] shapes = new Shape[3]
new Rectangle(3.0f, 4.0f),
new Triangle(5.0f, 2.0f),
private readonly ShapeProperties[] shapeProps = new ShapeProperties[]
new ShapeProperties(ShapeTypes.Rectangle, 3.0f, 4.0f),
new ShapeProperties(ShapeTypes.Triangle, 5.0f, 2.0f),
new ShapeProperties(ShapeTypes.Circle, 3.3f)
return (shapes[N]).area();
return (shapeProps[N]).GetArea();
public static BenchmarkDotNet.Reports.Summary Run()
var maxtime = System.TimeSpan.FromSeconds(30);
var iterationtime = new TimeInterval_t(20, Perfolizer.Horology.TimeUnit.Millisecond);
var toolChain = new InProcessEmitToolchain(logOutput: false, timeout: maxtime);
var job = Job.Default.WithToolchain(toolChain).WithIterationTime(iterationtime);
var config = DefaultConfig.Instance.AddJob(job)
.AddLogger(new ConsoleLogger(true, ConsoleLogger.CreateGrayScheme()))
.WithOptions(ConfigOptions.DisableLogFile);
var typeBenchmarkRunnerType = typeof(BenchmarkDotNet.Running.BenchmarkRunner);
Console.WriteLine(typeBenchmarkRunnerType);
var call = typeBenchmarkRunnerType.GetMethod("RunWithDirtyAssemblyResolveHelper", BindingFlags.Static | BindingFlags.NonPublic,
null, new Type[] { typeof(Type), typeof(IConfig), typeof( string[]) }, null);
return RunWithExceptionHandling(() => (BenchmarkDotNet.Reports.Summary)call.Invoke(null, new object [] { typeof(Benchmark), config, null }));
private static Summary RunWithExceptionHandling(Func<Summary> run)
Console.WriteLine(e.ToString());
internal class MyDirtyAssemblyResolveHelper : IDisposable
internal static IDisposable Create() { return new MyDirtyAssemblyResolveHelper(); }
private MyDirtyAssemblyResolveHelper() { AppDomain.CurrentDomain.AssemblyResolve += HelpTheFrameworkToResolveTheAssembly; }
public void Dispose() { AppDomain.CurrentDomain.AssemblyResolve -= HelpTheFrameworkToResolveTheAssembly; }
private Assembly HelpTheFrameworkToResolveTheAssembly(object sender, ResolveEventArgs args)
var fullName = new AssemblyName(args.Name);
string simpleName = fullName.Name;
string guessedPath = System.IO.Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "{simpleName}.dll");
if (!System.IO.File.Exists(guessedPath))
Console.WriteLine("// Wrong assembly binding redirects for {simpleName}, loading it from disk anyway.");
return Assembly.LoadFrom(guessedPath);
public struct ShapeProperties
public ShapeProperties(ShapeTypes type, float l, float h = 0)
case ShapeTypes.Rectangle: return l * h;
case ShapeTypes.Triangle: return l * h / 2.0f;
case ShapeTypes.Circle: return l * l * (float)Math.PI;
throw new InvalidOperationException(string.Format("Unkown area for type: {0}", type));
public abstract class Shape
public abstract float area();
public class Rectangle : Shape
public Rectangle(float length, float width)
public override float area()
public class Triangle : Shape
public Triangle(float baseline, float height)
this.baseline = baseline;
public override float area()
return (baseline * height / 2.0f);
public class Circle : Shape
public Circle(float radius)
public override float area()
return (radius * radius * (float)Math.PI);