Exemplo n.º 1
0
        public static string sayHellotoMe(string myName, bool showInMessageBox)
        {
            string message = string.Format("Hello {0}", myName);

            log.info(message);
            if (showInMessageBox)
            {
                log.showMessageBox(message);
            }
            return(message);
        }
 public static string testStaticExecution(string filename)
 {
     log.debug("File Exists: {0}", filename);
     log.showMessageBox("test");
     return("target file exists: " + filename);
 }