my question is if MakeGenericMethod() can be called on iOS.
sorry I don't have a way to try this myself right now.
eg.
MethodInfo method = typeof(Sample).GetMethod("GenericMethod");
MethodInfo generic = method.MakeGenericMethod(myType);
generic.Invoke(this, null);
thanks.
↧