[Solved] Message Box issues in C#


There are a bunch of overloads on MessageBox.Show. The one you want is the one where you call it with 2 strings like this:

MessageBox.Show ("Mandelbrot by Milan." + Environment.NewLine +
                   "Email: [email protected]" + Environment.NewLine +
                   "Contact No: +977123456789" + Environment.NewLine,
                 "About Developer");

1

solved Message Box issues in C#