1 instantiation of RoFunctionPointerType
System.Reflection.MetadataLoadContext (1)
System\Reflection\TypeLoading\Modules\Ecma\EcmaModule.TypeProvider.cs (1)
38public RoType GetFunctionPointerType(MethodSignature<RoType> signature) => new RoFunctionPointerType(this, signature);
4 references to RoFunctionPointerType
System.Reflection.MetadataLoadContext (4)
System\Reflection\TypeLoading\Types\RoFunctionPointerType.cs (1)
115if (obj is not RoFunctionPointerType other)
System\Reflection\TypeLoading\Types\RoModifiedFunctionPointerType.cs (2)
21public RoModifiedFunctionPointerType(RoFunctionPointerType functionPointerType) : base(functionPointerType) 51private Type[] CreateCallingConventions(Type[] returnTypeOptionalModifiers, RoFunctionPointerType functionPointerType)
System\Reflection\TypeLoading\Types\RoModifiedType.cs (1)
40modifiedType = new RoModifiedFunctionPointerType((RoFunctionPointerType)unmodifiedType);