WriteText() public method

Write text to the console using the prefix
public WriteText ( string text ) : void
text string
return void
コード例 #1
0
ファイル: Log.cs プロジェクト: westurner/Bricklayer-1
 /// <summary>
 /// Writes text to the console on a new line, using the specified log prefix, and a color for the rest of the text
 /// </summary>
 public static void WriteLine(LogType type, ConsoleColor color, string text)
 {
     type.WriteText(text, color);
 }
コード例 #2
0
ファイル: Log.cs プロジェクト: Cyral/Bricklayer
 /// <summary>
 /// Writes text to the console on a new line, using the specified log prefix
 /// </summary>
 public static void WriteLine(LogType type, string text)
 {
     type.WriteText(text);
 }
コード例 #3
0
ファイル: Log.cs プロジェクト: westurner/Bricklayer-1
 /// <summary>
 /// Writes text to the console on a new line, using the specified log prefix
 /// </summary>
 public static void WriteLine(LogType type, string text)
 {
     type.WriteText(text);
 }
コード例 #4
0
ファイル: Log.cs プロジェクト: Cyral/Bricklayer
 /// <summary>
 /// Writes text to the console on a new line, using the specified log prefix, and a color for the rest of the text
 /// </summary>
 public static void WriteLine(LogType type, ConsoleColor color, string text)
 {
     type.WriteText(text, color);
 }