Пример #1
0
 string[] ITestMethodBindings.SomeExplicitlyImplementedMethod(byte x)
 {
     return(ReflectionHelper.GetMethodParameterTypes(MethodBase.GetCurrentMethod()));
 }
Пример #2
0
 public static string[] SomeStaticMethod(char x)
 {
     return(ReflectionHelper.GetMethodParameterTypes(MethodBase.GetCurrentMethod()));
 }
Пример #3
0
 public string[] SomeInstanceMethod(byte x)
 {
     return(ReflectionHelper.GetMethodParameterTypes(MethodBase.GetCurrentMethod()));
 }