My question is that a method requires a long type arg and i want to execute it by reflection. However, MethodInfo needs a array of object and long is a value type, it cannot be cast to object.
How to solve it?
e.g.(just a example)
class A
{
bool IsZero(long a)
{
return a == 0;
}
}
parameter must be specified via object[]
myLongis automatically boxed.if you have an
int, you must cast it intolongThe number of the elements and the element types in the array must match the number and type of the parameters (signature match)