4 references to TypeDefOrRefTag
System.Reflection.Metadata (4)
System\Reflection\Metadata\Ecma335\CodedIndex.cs (4)
119public static int TypeDefOrRef(EntityHandle handle) => (handle.RowId << (int)TypeDefOrRefTag.BitCount) | (int)ToTypeDefOrRefTag(handle.Kind); 488private static TypeDefOrRefTag ToTypeDefOrRefTag(HandleKind kind) 492case HandleKind.TypeDefinition: return TypeDefOrRefTag.TypeDef; 493case HandleKind.TypeReference: return TypeDefOrRefTag.TypeRef;