MethodBuilder.MakeGenericMethod(Type[]) Metoda
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
Zwraca metodę ogólną skonstruowaną z bieżącej definicji metody ogólnej przy użyciu określonych argumentów typu ogólnego.
public:
override System::Reflection::MethodInfo ^ MakeGenericMethod(... cli::array <Type ^> ^ typeArguments);
public override System.Reflection.MethodInfo MakeGenericMethod (params Type[] typeArguments);
override this.MakeGenericMethod : Type[] -> System.Reflection.MethodInfo
Public Overrides Function MakeGenericMethod (ParamArray typeArguments As Type()) As MethodInfo
Parametry
Zwraca
Reprezentujący MethodInfo metodę ogólną skonstruowaną z bieżącej definicji metody ogólnej przy użyciu określonych argumentów typu ogólnego.
Przykłady
Poniższy przykład kodu tworzy skonstruowaną metodę na podstawie niekompletnej definicji metody ogólnej w niepełnym typie.
W przykładzie tworzony jest zestaw przejściowy i moduł z pojedynczym typem, dodaje metodę M
i tworzy metodę ogólną przez dodanie parametru DefineGenericParameters typu T przy użyciu metody . Parametr typu jest używany jako typ parametru metody, a także jako typ zwracany. Definicja metody ogólnej nie ma treści, a otaczającego typu nie jest ukończona. Metoda MakeGenericMethod jest następnie używana do tworzenia skonstruowanej metody M<String>
(M(Of String)
w Visual Basic). Przykładowy kod nie ma danych wyjściowych, ponieważ podklasa zwrócona MethodInfo przez metodę MakeGenericMethod nie zezwala na odbicie względem jego parametrów.
Uwaga
Aby zapoznać się z innym przykładem kodu, który używa MakeGenericMethodelementu , zobacz DefineGenericParameters. MakeGenericMethod jest również szeroko używany podczas emitowania kodu, który używa typów ogólnych. Zobacz Instrukcje: definiowanie metody ogólnej za pomocą emisji odbicia.
using namespace System;
using namespace System::Reflection;
using namespace System::Reflection::Emit;
void main()
{
// Define a transient dynamic assembly (only to run, not
// to save) with one module and a type "Test".
//
AssemblyName^ aName = gcnew AssemblyName("MyDynamic");
AssemblyBuilder^ ab =
AppDomain::CurrentDomain->DefineDynamicAssembly(
aName,
AssemblyBuilderAccess::Run);
ModuleBuilder^ mb = ab->DefineDynamicModule(aName->Name);
TypeBuilder^ tb = mb->DefineType("Test");
// Add a public static method "M" to Test, and make it a
// generic method with one type parameter named "T").
//
MethodBuilder^ meb = tb->DefineMethod("M",
MethodAttributes::Public | MethodAttributes::Static);
array<GenericTypeParameterBuilder^>^ typeParams =
meb->DefineGenericParameters(gcnew array<String^> { "T" });
// Give the method one parameter, of type T, and a
// return type of T.
meb->SetParameters(typeParams);
meb->SetReturnType(typeParams[0]);
// Create a MethodInfo for M<string>, which can be used in
// emitted code. This is possible even though the method
// does not yet have a body, and the enclosing type is not
// created.
MethodInfo^ mi = meb->MakeGenericMethod(String::typeid);
// Note that this is actually a subclass of MethodInfo,
// which has rather limited capabilities -- for
// example, you cannot reflect on its parameters.
}
using System;
using System.Reflection;
using System.Reflection.Emit;
class Example
{
public static void Main()
{
// Define a transient dynamic assembly (only to run, not
// to save) with one module and a type "Test".
//
AssemblyName aName = new AssemblyName("MyDynamic");
AssemblyBuilder ab =
AppDomain.CurrentDomain.DefineDynamicAssembly(
aName,
AssemblyBuilderAccess.Run);
ModuleBuilder mb = ab.DefineDynamicModule(aName.Name);
TypeBuilder tb = mb.DefineType("Test");
// Add a public static method "M" to Test, and make it a
// generic method with one type parameter named "T").
//
MethodBuilder meb = tb.DefineMethod("M",
MethodAttributes.Public | MethodAttributes.Static);
GenericTypeParameterBuilder[] typeParams =
meb.DefineGenericParameters(new string[] { "T" });
// Give the method one parameter, of type T, and a
// return type of T.
meb.SetParameters(typeParams);
meb.SetReturnType(typeParams[0]);
// Create a MethodInfo for M<string>, which can be used in
// emitted code. This is possible even though the method
// does not yet have a body, and the enclosing type is not
// created.
MethodInfo mi = meb.MakeGenericMethod(typeof(string));
// Note that this is actually a subclass of MethodInfo,
// which has rather limited capabilities -- for
// example, you cannot reflect on its parameters.
}
}
Imports System.Reflection
Imports System.Reflection.Emit
Class Example
Public Shared Sub Main()
' Define a transient dynamic assembly (only to run, not
' to save) with one module and a type "Test".
'
Dim aName As AssemblyName = New AssemblyName("MyDynamic")
Dim ab As AssemblyBuilder = _
AppDomain.CurrentDomain.DefineDynamicAssembly( _
aName, _
AssemblyBuilderAccess.Run)
Dim mb As ModuleBuilder = ab.DefineDynamicModule(aName.Name)
Dim tb As TypeBuilder = mb.DefineType("Test")
' Add a Public Shared method "M" to Test, and make it a
' generic method with one type parameter named "T").
'
Dim meb As MethodBuilder = tb.DefineMethod("M", _
MethodAttributes.Public Or MethodAttributes.Static)
Dim typeParams() As GenericTypeParameterBuilder = _
meb.DefineGenericParameters(New String() { "T" })
' Give the method one parameter, of type T, and a
' return type of T.
meb.SetParameters(typeParams)
meb.SetReturnType(typeParams(0))
' Create a MethodInfo for M(Of String), which can be used
' in emitted code. This is possible even though the method
' does not yet have a body, and the enclosing type is not
' created.
Dim mi As MethodInfo = _
meb.MakeGenericMethod(GetType(String))
' Note that this is actually a subclass of MethodInfo,
' which has rather limited capabilities -- for
' example, you cannot reflect on its parameters.
End Sub
End Class
Uwagi
Podczas emitowania kodu dynamicznego może być konieczne emitowanie wywołania do metody skonstruowanej z definicji metody ogólnej reprezentowanej przez metodę MethodBuilder, przed ukończeniem otaczającego typu. Możesz użyć MakeGenericMethod metody , aby utworzyć MethodInfo metodę dla takiej skonstruowanej metody i użyć metody MethodInfo w wywołaniu emitowanego.