6

Here is my issue;

public class MyClass<T>
{
   public void DoSomething(T obj)
   {
      ....
   }
}

What I did is:

var classType = typeof(MyClass<>);
Type[] classTypeArgs = { typeof(T) };
var genericClass = classType.MakeGenericType(classTypeArgs);
var classInstance = Activator.CreateInstance(genericClass);
var method = classType.GetMethod("DoSomething", new[]{typeof(T)});
method.Invoke(classInstance, new[]{"Hello"});

In the above case the exception I get is: Late bound operations cannot be performed on types or methods for which ContainsGenericParameters is true.

If I try to make the method generic it fails again with an exception: MakeGenericMethod may only be called on a method for which MethodBase.IsGenericMethodDefinition is true.

How should I invoke the method?

bobbymcr
  • 23,769
  • 3
  • 56
  • 67
Michael H.
  • 227
  • 1
  • 4
  • 11

1 Answers1

12

You are calling GetMethod on the wrong object. Call it with the bound generic type and it should work. Here is a complete sample which works properly:

using System;
using System.Reflection;

internal sealed class Program
{
    private static void Main(string[] args)
    {
        Type unboundGenericType = typeof(MyClass<>);
        Type boundGenericType = unboundGenericType.MakeGenericType(typeof(string));
        MethodInfo doSomethingMethod = boundGenericType.GetMethod("DoSomething");
        object instance = Activator.CreateInstance(boundGenericType);
        doSomethingMethod.Invoke(instance, new object[] { "Hello" });
    }

    private sealed class MyClass<T>
    {
        public void DoSomething(T obj)
        {
            Console.WriteLine(obj);
        }
    }
}
bobbymcr
  • 23,769
  • 3
  • 56
  • 67