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

Print() 공개 메소드

public Print ( AbstractMessage msg ) : void
msg AbstractMessage
리턴 void
		public override void Print (AbstractMessage msg)
		{
			base.Print (msg);

			if (Stacktrace)
				Console.WriteLine (FriendlyStackTrace (new StackTrace (true)));

			if (++print_count == Fatal)
				throw new Exception (msg.Text);
		}