Bounce.LevelEditor.Editor.showMessage C# (CSharp) Метод

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

private showMessage ( string title, string text ) : void
title string
text string
Результат void
        private void showMessage(string title, string text)
        {
            MessageBox.Show(text, title,
                MessageBoxButtons.OK,
                MessageBoxIcon.Exclamation);
        }