10 overrides of MakePointerType
System.Private.CoreLib (7)
src\libraries\System.Private.CoreLib\src\System\Reflection\Emit\EnumBuilder.cs (1)
43public override Type MakePointerType()
src\libraries\System.Private.CoreLib\src\System\Reflection\Emit\SymbolType.cs (1)
264public override Type MakePointerType()
src\libraries\System.Private.CoreLib\src\System\Reflection\Emit\TypeBuilder.cs (1)
294public override Type MakePointerType()
src\libraries\System.Private.CoreLib\src\System\Reflection\Emit\TypeBuilderInstantiation.cs (1)
77public override Type MakePointerType()
src\libraries\System.Private.CoreLib\src\System\Reflection\SignatureType.cs (1)
50public sealed override Type MakePointerType() => new SignaturePointerType(this);
src\System\Reflection\Emit\RuntimeGenericTypeParameterBuilder.cs (1)
61public override Type MakePointerType()
src\System\RuntimeType.CoreCLR.cs (1)
3687public override Type MakePointerType() => new RuntimeTypeHandle(this).MakePointer();
System.Reflection.Context (1)
System\Reflection\Context\Delegation\DelegatingType.cs (1)
456public override Type MakePointerType()
System.Reflection.Emit (1)
src\libraries\System.Private.CoreLib\src\System\Reflection\Emit\SymbolType.cs (1)
264public override Type MakePointerType()
System.Reflection.MetadataLoadContext (1)
System\Reflection\TypeLoading\Types\RoType.cs (1)
324public sealed override Type MakePointerType() => this.GetUniquePointerType();
11 references to MakePointerType
Microsoft.CodeAnalysis.CSharp.Symbol.UnitTests (4)
Compilation\CompilationAPITests.cs (1)
2397var ptr = typeof(int).MakePointerType();
Symbols\TypeResolutionTests.cs (3)
137var ptrSym = c.Assembly.GetTypeByReflectionType(typeof(char).MakePointerType().MakePointerType()); 160err = c.Assembly.GetTypeByReflectionType(typeof(SyntaxKind).MakePointerType());
Microsoft.CodeAnalysis.ExpressionEvaluator.ResultProvider.Utilities (1)
Debugger\MemberInfo\TypeImpl.cs (1)
348return (TypeImpl)this.Type.MakePointerType();
Microsoft.CodeAnalysis.VisualBasic.Semantic.UnitTests (1)
Compilation\CompilationAPITests.vb (1)
2608Dim ptr = GetType(Integer).MakePointerType()
Microsoft.CSharp (1)
Microsoft\CSharp\RuntimeBinder\Semantics\Types\PointerType.cs (1)
25get => ReferentType.AssociatedSystemType.MakePointerType();
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\Reflection\SignatureTypeExtensions.cs (1)
207return type.MakePointerType();
src\libraries\System.Private.CoreLib\src\System\Reflection\TypeNameResolver.cs (1)
58return type.MakePointerType();
System.Reflection.Context (1)
System\Reflection\Context\Delegation\DelegatingType.cs (1)
458return _typeInfo.MakePointerType();
System.Reflection.MetadataLoadContext (1)
System\Reflection\Runtime\SignatureTypeExtensions.cs (1)
205return type.MakePointerType();