Beim Ausführen des folgenden Codes erhalte ich die Fehlermeldung "Late bound operations cannot be performed on types or methods for which ContainsGenericParameters is true."
class Program
{
static void Main(string[] args)
{
MethodInfo MI = typeof(MyClass).GetMethod("TestProc");
MI.MakeGenericMethod(new [] {typeof(string)});
MI.Invoke(null, new [] {"Hello"});
}
}
class MyClass
{
public static void TestProc<T>(T prefix)
{
Console.WriteLine("Hello");
}
}
Der obige Code ist nur eine skalierte Version des tatsächlichen Problems, das ich konfrontiert bin. Bitte helfen Sie.