4 writes to GenericType
ILCompiler.Compiler (1)
Compiler\MetadataManager.cs (1)
954GenericType = owningType,
ILCompiler.MetadataTransform (3)
ILCompiler\Metadata\Transform.Type.cs (2)
162GenericType = HandleType(entity.GetTypeDefinition()), 483GenericType = HandleType(module, ref reader)
Internal\Metadata\NativeFormat\Writer\NativeFormatWriterGen.cs (1)
4564GenericType = visitor.Visit(this, GenericType);
11 references to GenericType
ILCompiler.MetadataTransform (11)
Internal\Metadata\NativeFormat\Writer\NativeFormatWriterGen.cs (10)
4564GenericType = visitor.Visit(this, GenericType); 4573if (!Object.Equals(GenericType, other.GenericType)) return false; 4584hash = ((hash << 13) - (hash >> 19)) ^ (GenericType == null ? 0 : GenericType.GetHashCode()); 4592Debug.Assert(GenericType == null || 4593GenericType.HandleType == HandleType.TypeDefinition || 4594GenericType.HandleType == HandleType.TypeReference || 4595GenericType.HandleType == HandleType.TypeSpecification); 4596writer.Write(GenericType);
Internal\Metadata\NativeFormat\Writer\NativeMetadataWriter.cs (1)
805return this.GenericType.ToString() + "<" + string.Join(", ", this.GenericTypeArguments) + ">";