You win chrisf =P
This commit is contained in:
@@ -60,9 +60,9 @@ namespace OpenRA
|
|||||||
|
|
||||||
sb.AppendFormat("Exception of type `{0}`: {1}", e.GetType().FullName, e.Message);
|
sb.AppendFormat("Exception of type `{0}`: {1}", e.GetType().FullName, e.Message);
|
||||||
|
|
||||||
TypeLoadException tle;
|
if (e is TypeLoadException)
|
||||||
if ((tle = e as TypeLoadException) != null)
|
|
||||||
{
|
{
|
||||||
|
var tle = (TypeLoadException)e;
|
||||||
sb.AppendLine();
|
sb.AppendLine();
|
||||||
Indent(sb, d);
|
Indent(sb, d);
|
||||||
sb.AppendFormat("TypeName=`{0}`", tle.TypeName);
|
sb.AppendFormat("TypeName=`{0}`", tle.TypeName);
|
||||||
|
|||||||
Reference in New Issue
Block a user