WriteText() 공개 메소드

Write text to the console using the prefix
public WriteText ( string text ) : void
text string
리턴 void
예제 #1
0
 /// <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
 /// <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);
 }