Beispiel #1
0
 static void Main(string[] args)
 {
     string channel = args[0];
     string rnick = args[1];
     string rmsg = args[2];
     try
     {
     ObsidianFunctions.Functions ObsidFunc = new ObsidianFunctions.Functions();
     ObsidFunc.logMsg(rmsg);
     }
     catch (Exception ex)
     {
     Console.WriteLine("PRIVMSG " + channel + " :" + ex.ToString());
     }
 }
Beispiel #2
0
        static void Main(string[] args)
        {
            string channel = args[0];
            string rnick   = args[1];
            string rmsg    = args[2];

            try
            {
                ObsidianFunctions.Functions ObsidFunc = new ObsidianFunctions.Functions();
                ObsidFunc.logMsg(rmsg);
            }
            catch (Exception ex)
            {
                Console.WriteLine("PRIVMSG " + channel + " :" + ex.ToString());
            }
        }
Beispiel #3
0
 public void logMsg()
 {
     ObsidianFunctions.Functions ObsidFunc = new ObsidianFunctions.Functions();
     ObsidFunc.logMsg(mail);
 }