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);
}
...
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);
}
Комментариев нет:
Отправить комментарий