VixenApplication.VixenApplication.CheckForTestBuild C# (CSharp) Method

CheckForTestBuild() private method

private CheckForTestBuild ( ) : void
return void
        private void CheckForTestBuild()
        {
            if (_devBuild)
            {
                //messageBox Arguments are (Text, Title, No Button Visible, Cancel Button Visible)
                MessageBoxForm.msgIcon = SystemIcons.Exclamation;
                var messageBox = new MessageBoxForm("Please be aware that this is a development version. Some parts of the software may not work, and data loss is possible! Please backup your data before using this version of the software.", "Development/Test Software", false, false);
                messageBox.ShowDialog();
            }
        }