Mono.CSharp.ConsoleReportPrinter.FormatText C# (CSharp) 메소드

FormatText() 보호된 메소드

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

			return txt;
		}