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