string[] ITestMethodBindings.SomeExplicitlyImplementedMethod(bool[] x) { return(ReflectionHelper.GetMethodParameterTypes(MethodBase.GetCurrentMethod())); }
public static string[] SomeStaticMethod(int[] x) { return(ReflectionHelper.GetMethodParameterTypes(MethodBase.GetCurrentMethod())); }
public string[] SomeInstanceMethod(bool[] x) { return(ReflectionHelper.GetMethodParameterTypes(MethodBase.GetCurrentMethod())); }
public string[] SomeInstanceMethod(DateTime x1, DateTime x2) { return(ReflectionHelper.GetMethodParameterTypes(MethodBase.GetCurrentMethod())); }