Beispiel #1
0
 string[] ITestMethodBindings.SomeExplicitlyImplementedMethod(bool[] x)
 {
     return(ReflectionHelper.GetMethodParameterTypes(MethodBase.GetCurrentMethod()));
 }
Beispiel #2
0
 public static string[] SomeStaticMethod(int[] x)
 {
     return(ReflectionHelper.GetMethodParameterTypes(MethodBase.GetCurrentMethod()));
 }
Beispiel #3
0
 public string[] SomeInstanceMethod(bool[] x)
 {
     return(ReflectionHelper.GetMethodParameterTypes(MethodBase.GetCurrentMethod()));
 }
Beispiel #4
0
 public string[] SomeInstanceMethod(DateTime x1, DateTime x2)
 {
     return(ReflectionHelper.GetMethodParameterTypes(MethodBase.GetCurrentMethod()));
 }