示例#1
0
 public static void LogTask(AndroidTaskLog log)
 {
     if (Task != null)
     {
         Task(log);
     }
 }
示例#2
0
 public static void LogTask(AndroidTaskLog log)
 {
     if (Task != null)
     {
         Task(log);
     }
     else
     {
         throw new InvalidOperationException("Internal Error: should initialize Task");
     }
 }
 public static void LogTask(AndroidTaskLog log)
 {
     if (Task != null)
         Task (log);
 }