예제 #1
0
 public void PrintLine(TextColor color, string text) => owner.PrintLine(this, color.Box(), text);
예제 #2
0
 public void PrintLine(object value, TextColor color) => owner.PrintLine(this, color.Box(), printOptionsImpl, value);
예제 #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;
 }
예제 #4
0
 public void Write(TextColor color, string text) => provider.Output.Write(color.Box(), text);
예제 #5
0
		public void WriteLine(TextColor color, string s) => WriteLine(color.Box(), s);
예제 #6
0
 public void Print(TextColor color, string?text) => owner.Print(this, color.Box(), text);
예제 #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);
예제 #9
0
 public void Write(TextColor color, string?text) => Add(color.Box(), text);
예제 #10
0
		public void Write(string text, TextColor color) => OutputPrint(text, color.Box());
예제 #11
0
파일: LogEditor.cs 프로젝트: net10010/dnSpy
 public void Write(string text, TextColor color) => OutputPrint(text, color.Box());
예제 #12
0
		public void PrintLine(TextColor color, string text) => PrintLine(color.Box(), text);
예제 #13
0
		public void Write(TextColor color, string text) => Add(color.Box(), text);
예제 #14
0
 public void PrintLine(Exception ex, TextColor color) => owner.PrintLine(this, color.Box(), ex);
예제 #15
0
		void IReplEditor.OutputPrintLine(string text, TextColor color, bool startOnNewLine) =>
			((IReplEditor)this).OutputPrint(text + Environment.NewLine, color.Box(), startOnNewLine);
예제 #16
0
 public void PrintLine(TextColor color, string?text) => PrintLine(color.Box(), text);
예제 #17
0
 void IReplEditor.OutputPrintLine(string text, TextColor color, bool startOnNewLine) =>
 ((IReplEditor)this).OutputPrint(text + Environment.NewLine, color.Box(), startOnNewLine);
예제 #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;
		}
예제 #19
0
		public void Write(TextColor color, string s) => WriteInternal(color.Box(), s);