```csharp using System; using System.Collections.Generic;

namespace PreHOPL { static class Program { private static readonly Dictionary> dict = new Dictionary>() { ["SAYLIT"] = new Tuple(1, (Action)System.Console.WriteLine), };

    private static void Main(string[] args)
    {
        dict["SAYLIT"].Item2.DynamicInvoke("Hello World!");
    }
}

} ``` I've just tried 4 diferent online tools (Telerik, ICSharpCode, Carlosag and DeveloperFusion) to convert this to VB.Net for a colleague. Three have spat a long error message and the fourth is spinning its wheels going nowhere. Ideas?