public static CSharpKernel UseKernelHelpers(
            this CSharpKernel kernel)
        {
            Task.Run(() =>
                     kernel.SendAsync(
                         new SubmitCode($@"
using static {typeof(Kernel).FullName};
"))).Wait();

            return(kernel);
        }
        public static CSharpKernel UseDefaultFormatting(
            this CSharpKernel kernel)
        {
            Task.Run(() =>
                     kernel.SendAsync(
                         new SubmitCode($@"
using static {typeof(PocketViewTags).FullName};
using {typeof(PocketView).Namespace};
"))).Wait();

            return(kernel);
        }