コード例 #1
0
 public static void LogTime(this Traces @this, string description)
 {
     DebugTracing.LogTime(@this, description);
 }
コード例 #2
0
 public static void LogTime(this Traces @this, bool newLine, string description)
 {
     DebugTracing.LogTime(@this, newLine, description);
 }
コード例 #3
0
 public static void LogTime(this Traces @this, bool newLine, string format, params object[] args)
 {
     DebugTracing.LogTime(@this, newLine, format, args);
 }
コード例 #4
0
 public static void Trace(this Traces @this, string format, params object[] args)
 {
     DebugTracing.Trace(@this, format, args);
 }
コード例 #5
0
ファイル: DebugTracing.cs プロジェクト: NexMetu/MattDylanGame
 public static void LogTime(this TraceFlags @this, string format, params object[] args)
 {
     DebugTracing.LogTime(@this, format, args);
 }
コード例 #6
0
ファイル: DebugTracing.cs プロジェクト: NexMetu/MattDylanGame
 public static void Trace(this TraceFlags @this, bool newLine, string description)
 {
     DebugTracing.Trace(@this, newLine, description);
 }
コード例 #7
0
ファイル: DebugTracing.cs プロジェクト: NexMetu/MattDylanGame
 public static void Trace(this TraceFlags @this, bool newLine, string format, params object[] args)
 {
     DebugTracing.Trace(@this, newLine, format, args);
 }