public static string GetParamName(System.Reflection.MethodInfo method, int index){ string retVal = string.Empty; if (method != null && method.GetParameters().Length > index) retVal = method.GetParameters()[index].Name; return retVal;}以上示例应满足您的需求。



