//
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
//
namespace ImageSharp.Sandbox46
{
using System;
public class Program
{
///
/// The main entry point. Useful for executing benchmarks and performance unit tests manually,
/// when the IDE test runners lack some of the functionality. Eg.: it's not possible to run JetBrains memory profiler for unit tests.
///
///
/// The arguments to pass to the program.
///
public static void Main(string[] args)
{
Console.WriteLine("Hello.");
}
}
}