AvoidBoxingToString.Program.Main C# (CSharp) Method

Main() static private method

static private Main ( string args ) : void
args string
return void
        static void Main(string[] args)
        {
            string benchmarkId = args.Length == 1 ? args[0] : null;
            var competition = (new Program()).GetBenchmarkCompetition(benchmarkId);
            competition.Run();
        }