ModuleBuilder.GetArrayMethodCore 方法

定义

在派生类中重写时,返回数组类上的命名方法。

protected:
 abstract System::Reflection::MethodInfo ^ GetArrayMethodCore(Type ^ arrayClass, System::String ^ methodName, System::Reflection::CallingConventions callingConvention, Type ^ returnType, cli::array <Type ^> ^ parameterTypes);
protected abstract System.Reflection.MethodInfo GetArrayMethodCore (Type arrayClass, string methodName, System.Reflection.CallingConventions callingConvention, Type? returnType, Type[]? parameterTypes);
abstract member GetArrayMethodCore : Type * string * System.Reflection.CallingConventions * Type * Type[] -> System.Reflection.MethodInfo
Protected MustOverride Function GetArrayMethodCore (arrayClass As Type, methodName As String, callingConvention As CallingConventions, returnType As Type, parameterTypes As Type()) As MethodInfo

参数

arrayClass
Type

数组类。

methodName
String

数组类上的方法的名称。

callingConvention
CallingConventions

方法的调用约定。

returnType
Type

方法的返回类型。

parameterTypes
Type[]

方法参数的类型。

返回

数组类上的命名方法。

适用于