// add the action to redirect output to VS Code
        protected void PrintToVSCode(string m)
        {
            RhinoApp.Write(m);
            GotCodeFeedbackEventArgs arg = new GotCodeFeedbackEventArgs {
                Message = m
            };

            OnGotCodeFeedBack(arg);
        }
 protected virtual void OnGotCodeFeedBack(GotCodeFeedbackEventArgs e)
 {
     GotCodeFeekBack?.Invoke(this, e);
 }