Mono.CSharp.ConsoleReportPrinter.FormatText C# (CSharp) Method

FormatText() protected method

protected FormatText ( string txt ) : string
txt string
return string
		protected override string FormatText (string txt)
		{
			if (prefix != null)
				return prefix + txt + postfix;

			return txt;
		}