Example #1
0
 public static void LogTime(this Traces @this, string description)
 {
     DebugTracing.LogTime(@this, description);
 }
Example #2
0
 public static void LogTime(this Traces @this, bool newLine, string description)
 {
     DebugTracing.LogTime(@this, newLine, description);
 }
Example #3
0
 public static void LogTime(this Traces @this, bool newLine, string format, params object[] args)
 {
     DebugTracing.LogTime(@this, newLine, format, args);
 }
Example #4
0
 public static void Trace(this Traces @this, string format, params object[] args)
 {
     DebugTracing.Trace(@this, format, args);
 }
Example #5
0
 public static void LogTime(this TraceFlags @this, string format, params object[] args)
 {
     DebugTracing.LogTime(@this, format, args);
 }
Example #6
0
 public static void Trace(this TraceFlags @this, bool newLine, string description)
 {
     DebugTracing.Trace(@this, newLine, description);
 }
Example #7
0
 public static void Trace(this TraceFlags @this, bool newLine, string format, params object[] args)
 {
     DebugTracing.Trace(@this, newLine, format, args);
 }