Using reflection to get method name and parameters

You can’t get method parameter values from reflection. You’d have to use the debugging/profiling API. You can get the parameter names and types, but not the parameters themselves. Sorry…

Leave a Comment