Snippets Collections
        public static void WriteLine(this TextBox tbDbg, string msg)
        {
            string vbCrLf = "\r\n";
            tbDbg.AppendText(msg + vbCrLf);
        }

        public static void Write(this TextBox tbDbg, string msg)
        {
            tbDbg.AppendText(msg);
        }

Save snippets that work with our extensions

Available in the Chrome Web Store Get Firefox Add-on Get VS Code extension