public static void Inbox(string msg)
 {
     if (msg == "ping")
     {
         ProcessLog.tellInfo("pong");
         Process.tell(Process.Sender, "pong");
     }
     else
     {
         ProcessLog.tellInfo("ping");
         Process.tell(Process.Sender, "ping");
     }
 }