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