Exemplo n.º 1
0
 public static void Debug(string format, params Object[] args)
 {
     if (enable)
     {
         ConsoleU.Debug(format, args);
     }
 }
Exemplo n.º 2
0
 public static void Debug(object msg)
 {
     if (enable)
     {
         ConsoleU.Debug(msg);
     }
 }