pretty printing exceptions in C#
Console.WriteLine(exception.ToString());
the ToString
method of Exception
does exactly that.
Exception.ToString() ?
Console.WriteLine(exception.ToString());
the ToString
method of Exception
does exactly that.
Exception.ToString() ?