Ejemplo n.º 1
0
 public void PrintLine(TextColor color, string text) => owner.PrintLine(this, color.Box(), text);
Ejemplo n.º 2
0
 public void PrintLine(object value, TextColor color) => owner.PrintLine(this, color.Box(), printOptionsImpl, value);
Ejemplo n.º 3
0
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="color">Color</param>
 /// <param name="text">Text</param>
 public ColorAndText(TextColor color, string text)
 {
     Color = color.Box();
     Text  = text;
 }
Ejemplo n.º 4
0
 public void Write(TextColor color, string text) => provider.Output.Write(color.Box(), text);
Ejemplo n.º 5
0
		public void WriteLine(TextColor color, string s) => WriteLine(color.Box(), s);
Ejemplo n.º 6
0
 public void Print(TextColor color, string?text) => owner.Print(this, color.Box(), text);
Ejemplo n.º 7
0
		public void WriteLine(string text, TextColor color) => WriteLine(text, color.Box());
 /// <inheritdoc/>
 public void Write(TextColor color, string text) => Write(color.Box(), text);
Ejemplo n.º 9
0
 public void Write(TextColor color, string?text) => Add(color.Box(), text);
Ejemplo n.º 10
0
		public void Write(string text, TextColor color) => OutputPrint(text, color.Box());
Ejemplo n.º 11
0
 public void Write(string text, TextColor color) => OutputPrint(text, color.Box());
Ejemplo n.º 12
0
		public void PrintLine(TextColor color, string text) => PrintLine(color.Box(), text);
Ejemplo n.º 13
0
		public void Write(TextColor color, string text) => Add(color.Box(), text);
Ejemplo n.º 14
0
 public void PrintLine(Exception ex, TextColor color) => owner.PrintLine(this, color.Box(), ex);
Ejemplo n.º 15
0
		void IReplEditor.OutputPrintLine(string text, TextColor color, bool startOnNewLine) =>
			((IReplEditor)this).OutputPrint(text + Environment.NewLine, color.Box(), startOnNewLine);
Ejemplo n.º 16
0
 public void PrintLine(TextColor color, string?text) => PrintLine(color.Box(), text);
Ejemplo n.º 17
0
 void IReplEditor.OutputPrintLine(string text, TextColor color, bool startOnNewLine) =>
 ((IReplEditor)this).OutputPrint(text + Environment.NewLine, color.Box(), startOnNewLine);
Ejemplo n.º 18
0
		/// <summary>
		/// Constructor
		/// </summary>
		/// <param name="color">Color</param>
		/// <param name="text">Text</param>
		public ColorAndText(TextColor color, string text) {
			Color = color.Box();
			Text = text;
		}
Ejemplo n.º 19
0
		public void Write(TextColor color, string s) => WriteInternal(color.Box(), s);