4 references to TypeOrMethodDefTag
System.Reflection.Metadata (4)
System\Reflection\Metadata\Ecma335\CodedIndex.cs (4)
133public static int TypeOrMethodDef(EntityHandle handle) => (handle.RowId << (int)TypeOrMethodDefTag.BitCount) | (int)ToTypeOrMethodDefTag(handle.Kind); 509private static TypeOrMethodDefTag ToTypeOrMethodDefTag(HandleKind kind) 513case HandleKind.TypeDefinition: return TypeOrMethodDefTag.TypeDef; 514case HandleKind.MethodDefinition: return TypeOrMethodDefTag.MethodDef;