We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f6a67bf commit 4bfebafCopy full SHA for 4bfebaf
MetadataProcessor.Shared/Extensions/TypeReferenceExtensions.cs
@@ -132,6 +132,11 @@ public static string TypeSignatureAsString(this TypeReference type)
132
return genericParamTypeSig.ToString();
133
}
134
135
+ if (type is GenericInstanceType genericInstance)
136
+ {
137
+ return $"{genericInstance.FullName}";
138
+ }
139
+
140
return "";
141
142
0 commit comments