Exemple #1
0
 internal string AddTask(string taskName, string description, string path)
 {
     ScheduledTask t = new ScheduledTask(taskName, description,path);
     t.RegisterTask();
     return "Done";
 }