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 fd6b2ab commit b01a21cCopy full SHA for b01a21c
MetadataProcessor.Shared/Tables/nanoTypeSpecificationsTable.cs
@@ -190,7 +190,7 @@ private void FillTypeSpecsFromTypes()
190
{
191
foreach (var m in t.Methods.Where(i => i.HasBody))
192
193
- foreach (var i in m.Body.Instructions.Where(i => (i.Operand is GenericParameter) || (i.OpCode.OperandType is OperandType.InlineType && ((TypeReference)i.Operand).IsArray)))
+ foreach (var i in m.Body.Instructions.Where(i => (i.Operand is GenericParameter) || (i.OpCode.OperandType is OperandType.InlineType && ((TypeReference)i.Operand).IsArray) || (i.OpCode.OperandType is OperandType.InlineTok)))
194
195
// get index of signature for the TypeSpecification
196
ushort signatureId;
0 commit comments