Forex_Strategy_Builder.Dialogs.Generator.Generator.ReportIndicatorError C# (CSharp) Метод

ReportIndicatorError() приватный Метод

Report Indicator Error
private ReportIndicatorError ( string text, string caption ) : void
text string
caption string
Результат void
        void ReportIndicatorError(string text, string caption)
        {
            if (this.InvokeRequired)
            {
                BeginInvoke(new DelegateReportIndicatorError(ReportIndicatorError), new object[] { text, caption });
            }
            else
            {
                Fancy_Message_Box msgBox = new Fancy_Message_Box(text, caption);
                msgBox.BoxWidth  = 450;
                msgBox.BoxHeight = 250;
                msgBox.Show();
            }
        }