Exemplo n.º 1
0
        public static void LogMsg(string msg)
        {
            if (LogMsgEvent != null)
            {
                LogMsgEventArgs args = new LogMsgEventArgs(msg);

                LogMsgEvent(args);
            }

             System.Console.WriteLine(msg);
        }
Exemplo n.º 2
0
        public static void LogMsg(string msg)
        {
            if (LogMsgEvent != null)
            {
                LogMsgEventArgs args = new LogMsgEventArgs(msg);

                LogMsgEvent(args);
            }

            System.Console.WriteLine(msg);
        }