1 implementation of GetInternalCorElementType
Microsoft.Diagnostics.DataContractReader.Contracts (1)
Contracts\RuntimeTypeSystem_1.cs (1)
919public CorElementType GetInternalCorElementType(TypeHandle typeHandle)
3 references to GetInternalCorElementType
Microsoft.Diagnostics.DataContractReader.Legacy (3)
Dbi\DacDbiImpl.cs (3)
3709corField->fieldType = (int)rts.GetInternalCorElementType(mtHandle); 3784pLayout->type = (int)(rts.IsString(typeHandle) ? CorElementType.String : rts.GetInternalCorElementType(typeHandle)); 3845CorElementType componentType = rts.IsString(componentTypeHandle) ? CorElementType.String : rts.GetInternalCorElementType(componentTypeHandle);