wasSharpNET

Subversion Repositories:
Compare Path: Rev
With Path: Rev
?path1? @ 25  →  ?path2? @ 27
/Diagnostics/ExceptionExtensions.cs
@@ -16,7 +16,7 @@
{
public static string PrettyPrint(this Exception ex, int columns = 80)
{
if(ex == null)
if (ex == null)
return string.Empty;
 
var st = new StackTrace(ex, true);
@@ -62,4 +62,4 @@
return sb.ToString();
}
}
}
}