Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/ikdasm.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CABlob.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/CABlob.cs b/CABlob.cs
index 0e728fd..108592f 100644
--- a/CABlob.cs
+++ b/CABlob.cs
@@ -93,7 +93,7 @@ namespace Ildasm
void AppendTypeName(StringBuilder sb, Type type, string typeName, bool noself = false, bool securityCompatHack = false)
{
- if (type.Assembly == assembly && !noself && (!type.IsGenericType || type.IsGenericTypeDefinition) && !type.HasElementType)
+ if (type.Assembly == assembly && !type.__IsMissing && !noself && (!type.IsGenericType || type.IsGenericTypeDefinition) && !type.HasElementType)
{
AppendTypeName(sb, type);
}