Boxing.Program.InvokeMain C# (CSharp) Method

InvokeMain() static private method

static private InvokeMain ( Type t ) : void
t System.Type
return void
        static void InvokeMain(Type t)
        {
            t.GetMethod(nameof(Main), BindingFlags.Static | BindingFlags.NonPublic).Invoke(null, null);
        }