avk013.blogspot.com - другой мой блог "C# and etc"

среда, 6 декабря 2017 г.

C# окно в консоли

using System.Runtime.InteropServices;
...
 class Program
    {
        [DllImport("User32.dll", CharSet = CharSet.Unicode)]
        public static extern int MessageBox(IntPtr h, string m, string c, int type);
...
  try
                { действия }
catch (Exception e) {
                    MessageBox((IntPtr)0, e.ToString(), "My Message Box", 0);
                }

Комментариев нет:

Отправить комментарий