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);
        }
star

Mon Jul 25 2022 21:29:08 GMT+0000 (Coordinated Universal Time)

#c# #extensionmethods

Save snippets that work with our extensions

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