Ejemplo n.º 1
0
 public static void Show(string text, string title)
 {
     System.Threading.ParameterizedThreadStart pT = new System.Threading.ParameterizedThreadStart(InvokeShow);
     pT.BeginInvoke(new MsgBoxOBject(text, title), null, null);
 }