diff --git a/dotnet/src/dotnetframework/GxClasses/Services/ReflectionHelper.cs b/dotnet/src/dotnetframework/GxClasses/Services/ReflectionHelper.cs index 751a046b7..9decf8f22 100644 --- a/dotnet/src/dotnetframework/GxClasses/Services/ReflectionHelper.cs +++ b/dotnet/src/dotnetframework/GxClasses/Services/ReflectionHelper.cs @@ -69,8 +69,7 @@ public static bool MethodHasInputParameters(object instance, String methodName) } public static Dictionary GetWrappedParameter(object instance, String methodName, Dictionary bodyParameters) - { - System.Diagnostics.Debugger.Launch(); + { MethodInfo methodInfo = instance.GetType().GetMethod(methodName); var methodParameters = methodInfo.GetParameters(); List inputParameters = new List();