Show / Hide Table of Contents

Interface IMethodCreationProvider

Interface representing a reflection provider used to instantiate System.Reflection.MethodInfo objects.

Namespace: System.Reflection
Assembly: Nuqleon.Reflection.Virtualization.dll
Syntax
public interface IMethodCreationProvider

Methods

MakeGenericMethod(MethodInfo, Type[])

Makes a generic method with the specified generic method definition and type arguments.

Declaration
MethodInfo MakeGenericMethod(MethodInfo genericMethodDefinition, params Type[] typeArguments)
Parameters
Type Name Description
System.Reflection.MethodInfo genericMethodDefinition

The generic method definition.

System.Type[] typeArguments

The type arguments.

Returns
Type Description
System.Reflection.MethodInfo

A generic method with the specified generic method definition and type arguments.

In This Article
Back to top Generated by DocFX