AvoidBoxingToString.Program.GetBenhmarkList C# (CSharp) Method

GetBenhmarkList() protected method

protected GetBenhmarkList ( ) : Tuple[]
return Tuple[]
        protected override Tuple<string, string, Action>[] GetBenhmarkList()
        {
            return new[] {
                Tuple.Create<string, string, Action>("ConcatObjects"      , "ConcatObjects"      , ConcatMessageWithBoxingBenchmark),
                Tuple.Create<string, string, Action>("ConcatStrings"      , "ConcatStrings"      , ConcatMessageAvoidingBoxingBenchmark),
                Tuple.Create<string, string, Action>("FormatWithBoxing"   , "FormatWithBoxing"   , FormatMessageWithBoxingBenchmark),
                Tuple.Create<string, string, Action>("FormatWithoutBoxing", "FormatWithoutBoxing", FormatMessageAvoidingBoxingBenchmark)
            };
        }